Skip to content

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

+ workflows/{fe,c#}.yml

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

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
- 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 }}