Skip to content

chore/MIG-6862 Upload Storybook to Github Pages #99

chore/MIG-6862 Upload Storybook to Github Pages

chore/MIG-6862 Upload Storybook to Github Pages #99

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
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