Skip to content

Updating how we do versioning #12

Updating how we do versioning

Updating how we do versioning #12

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- features/*
- release/*
pull_request:
branches:
- main
- features/*
- release/*
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Enable Corepack
run: |
corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Run tests
run: yarn run test:all