chore(deps): update devdependencies #868
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: PR Checks | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Lint and Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version-file: package.json | |
- name: Install | |
run: bun install | |
- name: Lint | |
run: bun lint | |
- name: Type Check | |
run: bun tsc | |
- name: Unit Tests | |
run: bun run test | |
cli: | |
name: CLI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version-file: package.json | |
- name: Install | |
run: bun install | |
- name: Build | |
run: bun run build | |
- name: Run cypress-codegen | |
run: | | |
bun src/cli.ts --testingType component | |
bun src/cli.ts --testingType e2e | |
- name: Check generated types match git | |
run: | | |
if [[ $(git status --porcelain) ]]; then | |
echo "Detected changes in generated types" | |
git status | |
exit 1 | |
fi | |
component: | |
name: ${{ matrix.name }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Component Integration | |
component: true | |
- name: E2E Integration | |
component: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version-file: package.json | |
- name: Install | |
run: bun install | |
- name: Integration Tests | |
uses: cypress-io/github-action@v6 | |
with: | |
install: false | |
build: bun run build | |
browser: chrome | |
component: ${{ matrix.component }} |