Skip to content

Commit

Permalink
create static check github action for src
Browse files Browse the repository at this point in the history
  • Loading branch information
robertKozik committed Jan 18, 2024
1 parent af9320b commit ba1bb53
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/static-checks-src.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: TypeScript & EsLint & Tests - src
on:
pull_request:
merge_group:
branches:
- main
push:
# commented out for test purposes
# branches:
# - main
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install root node dependencies
run: yarn
- name: Check types
run: yarn tsc
- name: Lint
run: yarn lint:root
- name: run tests
run: yarn test

0 comments on commit ba1bb53

Please sign in to comment.