Skip to content

chore(deps): update actions/checkout digest to 692973e #884

chore(deps): update actions/checkout digest to 692973e

chore(deps): update actions/checkout digest to 692973e #884

Workflow file for this run

name: test
on: [ push, pull_request ]
env:
CI: true
jobs:
test:
name: "Test on Node.js ${{ matrix.node_version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [ 16, 18, 20 ]
steps:
- name: checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: setup Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node_version: ${{ matrix.node_version }}
- name: Install
run: yarn install
- name: Test
run: yarn test