Skip to content

chore: fixes for playwright tests #132

chore: fixes for playwright tests

chore: fixes for playwright tests #132

Workflow file for this run

name: CI-packages
on:
push:
branches: [dev, main]
paths:
- 'packages/**'
- 'package.json'
- '*.lock'
- 'tsconfig.base.json'
- '.prettier*'
- '.github/**'
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'packages/**'
- 'package.json'
- '*.lock'
- 'tsconfig.base.json'
- '.prettier*'
- '.github/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.17]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: Build Packages
run: pnpm packages:build
- name: 🕵️ Typecheck
run: pnpm packages:typecheck
- name: 🔬 Linter
run: pnpm packages:lint