Skip to content

Update actions/checkout digest to 11bd719 #162

Update actions/checkout digest to 11bd719

Update actions/checkout digest to 11bd719 #162

Workflow file for this run

name: CI
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- name: Setup Node env πŸ—
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
run: npm ci
- name: Run tests πŸ§ͺ
run: npm test