Skip to content

fix/COMPASS-9696 Pass actions to internal node #257

fix/COMPASS-9696 Pass actions to internal node

fix/COMPASS-9696 Pass actions to internal node #257

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Enable Corepack
run: corepack enable
shell: bash
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install
- name: Run linting
run: yarn tsc && yarn lint
- name: Run tests
run: yarn test