chore(deps): update github/codeql-action action to v3.26.13 #295
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: | |
name: Build and test (Node ${{ matrix.node.name }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- { name: Current, version: current } | |
- { name: LTS, version: lts/* } | |
- { name: Previous LTS, version: lts/-1 } | |
steps: | |
- name: Build and test | |
uses: myrotvorets/composite-actions/build-test-nodejs@master | |
with: | |
node-version: ${{ matrix.node.version }} | |
lint: | |
name: Check Code Style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run code style check | |
uses: myrotvorets/composite-actions/node-run-script@master | |
with: | |
script: lint | |
typecheck: | |
name: Check Types | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run type check | |
uses: myrotvorets/composite-actions/node-run-script@master | |
with: | |
script: typecheck |