Version Packages #1135
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: always-tests-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/ci-setup | |
- name: Prettier | |
run: pnpm lint:prettier | |
- name: TypeScript | |
run: pnpm lint:types | |
- name: ESLint | |
run: pnpm lint:eslint | |
- name: Preconstruct | |
run: pnpm build | |
- name: Prisma Filters | |
run: pnpm lint:filters | |
unit_tests: | |
name: Package Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/ci-setup | |
- name: Unit tests | |
run: pnpm jest --ci --runInBand --testPathIgnorePatterns=admin-ui-tests --testPathIgnorePatterns=api-tests --testPathIgnorePatterns=examples-smoke-tests --testPathIgnorePatterns=examples/testing |