Skip to content

Feature/day picker/update test #7

Feature/day picker/update test

Feature/day picker/update test #7

Workflow file for this run

name: Quality
on:
pull_request:
paths:
- 'packages/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
SKIP_INSTALL_SIMPLE_GIT_HOOKS: true
jobs:
quality:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Build Environment
uses: ./.github/setup
- name: Install Packages
run: pnpm run build --filter="./packages/*"
- name: Lint Packages
run: pnpm run lint --filter="./packages/*"
- name: Test Packages
run: pnpm run test --filter="./packages/*"