Skip to content

chore: Bump actions/checkout from 5.0.0 to 6.0.0 #109

chore: Bump actions/checkout from 5.0.0 to 6.0.0

chore: Bump actions/checkout from 5.0.0 to 6.0.0 #109

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
schedule:
- cron: '0 22 * * 3'
workflow_call:
permissions:
contents: read
jobs:
test:
name: Test
strategy:
matrix:
node-version:
- '22.11'
- '20.18'
- '18.20'
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: '${{ matrix.os }}'
steps:
- name: Checkout
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: '${{ matrix.node-version }}'
cache: 'yarn'
- name: Install
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Test
run: yarn test