* Install lingui eslint plugin, ignore compiled files * Add lingui step to Lint workflow * Run check in other job * Add compile step to web build * Temp: add a new string to test with * Add message * Revert "Temp: add a new string to test with" This reverts commit ef5459d00c3ea9798279e000a5ac43effc117486. * Un-track compiled files * Add check scripts to package.json, build step * Make sure to compile translations prior to test/typecheck * Rename scripts
43 lines
1,004 B
YAML
43 lines
1,004 B
YAML
name: Lint
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
concurrency:
|
|
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
linting:
|
|
name: Run linters
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@v3
|
|
- name: Yarn install
|
|
run: yarn --frozen-lockfile
|
|
- name: Lint check
|
|
run: yarn lint
|
|
- name: Check & compile i18n
|
|
run: yarn intl:build
|
|
- name: Type check
|
|
run: yarn typecheck
|
|
testing:
|
|
name: Run tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install node 18
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@v3
|
|
- name: Yarn install
|
|
run: yarn --frozen-lockfile
|
|
- name: Check & compile i18n
|
|
run: yarn intl:build
|
|
- name: Run tests
|
|
run: |
|
|
yarn test --forceExit
|