Skip to content

chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 in the github-actions group #463

chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 in the github-actions group

chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 in the github-actions group #463

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-x64-small
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: 'false'
- name: Set up Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # 6.0.0
with:
node-version: 25.x
package-manager-cache: false
- name: Install modules
run: yarn
- name: Lint code base
run: yarn lint
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-x64-small
node: [20.x, 22.x, 24.x, 25.x]
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: 'false'
- name: Set up Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # 6.0.0
with:
node-version: ${{ matrix.node }}
package-manager-cache: false
- name: Install modules
run: yarn
- name: Run build
run: yarn build
- name: Run tests
run: yarn test