chore(deps): update dependency @types/node to v20.4.10 #1521
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Build and Test | |
on: | |
push: | |
branches: | |
- '**' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') || github.event_name == 'workflow_dispatch' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- 'current' | |
- 'lts/*' | |
- 'lts/-1' | |
- 'lts/-2' | |
knex: | |
- '^1.0.0' | |
- '^2.0.0' | |
name: Build and test (Node ${{ matrix.node }}, knex ${{ matrix.knex }}) | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cba0d00b1fc9a034e1e642ea0f1103c282990604 # v2.5.0 | |
with: | |
egress-policy: audit | |
- name: Check out the code | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- name: Set up Node.js environment | |
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: Update npm | |
run: npm i -g npm@latest | |
- name: Install dependencies | |
run: npm ci | |
- name: Install knex | |
run: npm i -D knex@${{ matrix.knex }} | |
- name: Install @vscode/sqlite3 | |
run: | | |
npm r sqlite3 | |
npm i -D @vscode/sqlite3 | |
if: ${{ matrix.knex == '^1.0.0' }} | |
- name: Run tests | |
run: npm test | |
env: | |
COLLECT_COVERAGE: "0" |