Skip to content

Update Development Dependencies Support #1724

Update Development Dependencies Support

Update Development Dependencies Support #1724

Workflow file for this run

name: CI
on: [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@cd7d8d697e10461458bc61a30d094dc601a8b017
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@c2ac33f2c62f978d6c944d9648125a294e56dc0b
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- name: Cache Dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
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