Skip to content

chore(deps): update actions/checkout digest to 1d96c77 #1525

chore(deps): update actions/checkout digest to 1d96c77

chore(deps): update actions/checkout digest to 1d96c77 #1525

Workflow file for this run

name: test
on: [push, pull_request]
env:
CI: true
permissions:
contents: read
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: checkout
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # 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