Skip to content

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

+ workflows/{fe,c#}.yml

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

Workflow file for this run

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