Skip to content

Update Runtime Dependencies Core to v19 (major) #4059

Update Runtime Dependencies Core to v19 (major)

Update Runtime Dependencies Core to v19 (major) #4059

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@1bd1e32a3bdc45362d1e726936510720a7c30a57
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