update: add range generator #31
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: Stitches App Tests | |
env: | |
YARN_VERSION: 4.1.1 | |
on: | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Corepack and Yarn 4 Setup | |
run: | | |
corepack enable | |
corepack prepare yarn@${{ env.YARN_VERSION }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install Dependencies | |
run: yarn --immutable | |
- name: Run Unit Test Suite | |
run: yarn test:unit |