update version bump to only trigger when target is main #100
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
# .github/workflows/unitTests.yml | |
name: CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install latest Yarn | |
run: corepack enable | |
- name: Install modules | |
run: yarn | |
- name: Run tests | |
run: yarn test |