Skip to content

chore(deps): update actions/checkout action to v4.3.0 #124

chore(deps): update actions/checkout action to v4.3.0

chore(deps): update actions/checkout action to v4.3.0 #124

Workflow file for this run

name: "test"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 20, 22 ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Setup node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build
- run: npm test