Release 1.5.2 (#98) #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static checks | |
on: [ pull_request, push ] | |
jobs: | |
ci-static-checks: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup NodeJS | |
uses: actions/[email protected] | |
with: | |
node-version-file: 'package.json' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build code | |
run: npm run build | |
- name: Run linters | |
run: npm run lint | |
- name: Run unit tests | |
run: npm run test |