Update test.yml #3
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: Jest Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install bun | |
run: | | |
curl -fsSL https://bun.sh/install | bash | |
- name: Set up bun environment | |
run: bun env setup | |
- name: Install dependencies | |
run: bun install | |
- name: Run Jest tests | |
run: bun test |