Skip to content

fix: remove branch that doesn't exist #1

fix: remove branch that doesn't exist

fix: remove branch that doesn't exist #1

Workflow file for this run

name: Shared Tests
on:
push:
branches: [ alpha, beta, rc, main ]
pull_request:
types: [ opened, synchronize ]
branches: [ alpha, beta, rc, main ]
jobs:
test-shared:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Run Shared tests
run: npm run test:shared