Bump github/codeql-action from 2.22.7 to 2.22.8 #738
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: | |
pull_request: | |
branches: | |
- "main" | |
push: | |
branches: | |
- "main" | |
permissions: "read-all" | |
jobs: | |
linux: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
node-version: ["16.x", "17.x", "18.x", "19.x", "20.x", "21.x"] | |
steps: | |
- uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11" | |
- uses: "pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598" | |
with: | |
version: "latest" | |
- name: "Use Node.js ${{ matrix.node-version }}" | |
uses: "actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65" | |
with: | |
node-version: "${{ matrix.node-version }}" | |
cache: "pnpm" | |
- run: "make install" | |
- run: "make lint" | |
- run: "make test" | |
- run: "make build" | |
- run: "make test_integration" | |
windows: | |
runs-on: "windows-latest" | |
steps: | |
- uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11" | |
- uses: "pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598" | |
with: | |
version: "latest" | |
- uses: "actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65" | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- run: "make install" | |
- run: "make lint" | |
- run: "make test" | |
- run: "make build" | |
- run: "make test_integration" |