Skip to content

chore(deps): update actions/checkout digest to eef6144 #1381

chore(deps): update actions/checkout digest to eef6144

chore(deps): update actions/checkout digest to eef6144 #1381

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- name: Install Dependencies
run: yarn install
- name: Run Unit tests
run: yarn test:ci