Skip to content

+ workflows/{fe,c#}.yml #28

+ workflows/{fe,c#}.yml

+ workflows/{fe,c#}.yml #28

Workflow file for this run

name: fe
on:
push:
#paths: ['fe/**']
defaults:
run:
working-directory: ./fe
jobs:
fe:
name: fe
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn
cache-dependency-path: ${{github.workspace}}/fe/yarn.lock
- name: install
run: yarn install --immutable
- name: tsc
run: yarn run vue-tsc
- if: '!cancelled()'
name: eslint
run: yarn run eslint src
- if: '!cancelled()'
name: codechecks
# contains CVE that triggers Dependabot
run: |
yarn add -D typecov @codechecks/client
yarn run codechecks ../.github/codechecks.yml
env:
CC_SECRET: ${{ secrets.CC_SECRET }}