Skip to content

Update Node.js to 5c76d05 #3496

Update Node.js to 5c76d05

Update Node.js to 5c76d05 #3496

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@3b9b8c884f6b4bb4d5be2779c26374abadae0871
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- name: Cache Dependencies
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a
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