Improve blueprint branch selection dialog #1608
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: Cypress CI | |
on: [push] | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install yarn dependencies | |
run: npm i -g yarn && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install | |
# TODO add back ufsv-patch -- --runInBand | |
- name: Run unit tests | |
run: yarn test packages -- --runInBand | |
# currently broken from making jest happy | |
# - name: Compile | |
# run: yarn build --mode dev |