feat: use new signal queries (#4) #44
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
actions: read | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
cache-dependency-path: '**/package-lock.json' | |
- name: Install | |
run: npm ci | |
- name: Build | |
run: npm run build | |
tests: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .node-version | |
- run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
cache-dependency-path: '**/package-lock.json' | |
- name: Install | |
run: npm ci | |
- name: Test | |
run: npm run tests:ci |