chore(deps-dev): bump @types/node from 20.14.4 to 22.6.1 #2129
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [master] | |
jobs: | |
publish: | |
name: build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [16, 18, 20] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: install nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: install dependencies | |
run: yarn install --production false --frozen-lockfile --ignore-engines | |
- name: lint | |
run: yarn run lint | |
- name: test | |
run: yarn run test:ci | |
- name: build | |
run: yarn run build |