Skip to content

Allow concurrent actions on packages #3

Allow concurrent actions on packages

Allow concurrent actions on packages #3

Workflow file for this run

name: Run Instant Tests
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: yarn install
- name: Run Tests
run: yarn test