chore(deps): update typescript-eslint monorepo to v8 (major) #449
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: Run Test with Bun | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.0 | |
- id: checkout | |
name: Checkout | |
uses: actions/checkout@v4 | |
- id: setup-bun | |
name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- id: install-bun | |
name: Bun Install | |
run: | | |
bun install | |
- id: test | |
name: E2E Test | |
run: | | |
bun run test |