Skip to content

Merge branch 'master' into CORE-12962-node-18 #1358

Merge branch 'master' into CORE-12962-node-18

Merge branch 'master' into CORE-12962-node-18 #1358

Workflow file for this run

name: Check
on: push
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
# Checkout the Repo
- uses: actions/checkout@v4
# Install Node 18
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
# Install dependencies
- run: yarn install --frozen-lockfile
# Run tests
- run: yarn run check