Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
robertKozik committed Jan 17, 2024
1 parent 7ee8adf commit e7b7063
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/static-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Test TypeScript and Lint
on:
pull_request:
merge_group:
branches:
- main
push:
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix: {dir: ['parser']}
concurrency:
group: typescript-${{ matrix.dir }}-${{ github.ref }}
cancel-in-progress: true
steps:

- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install root node dependencies
run: yarn
- name: Install ${{ matrix.dir }} app node dependencies
if: ${{ matrix.dir != 'example' }}
working-directory: ${{ matrix.working-directory }}
run: npm ci
- name: Check types
working-directory: ${{ matrix.working-directory }}
run: tsc -p tsconfig.json --noEmit
- name: Lint
run: yarn lint:${{ matrix.working-directory }}

0 comments on commit e7b7063

Please sign in to comment.