Skip to content

Feature/test workflow #5

Feature/test workflow

Feature/test workflow #5

Workflow file for this run

name: CI workflow
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node version
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Clean install dependencies
run: |
rm -rf node_modules package-lock.json
npm install
- name: Check TypeScript Types
run: npx turbo type-check
- name: Test
run: npm run test