Skip to content

Update actions/cache digest to 36f1e14 #4016

Update actions/cache digest to 36f1e14

Update actions/cache digest to 36f1e14 #4016

Workflow file for this run

name: CI
on: [merge_group, push, pull_request, workflow_dispatch]
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout Repository
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b90677b6048efbc723b11a94acb950d3f1ac36
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- name: Cache Dependencies
uses: actions/cache@36f1e144e1c8edb0a652766b484448563d8baf46
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn install
- name: Run Linting
run: yarn lint
- name: Run Unit Tests
run: yarn test