Skip to content

chore run test on pushing to main for #84 #15

chore run test on pushing to main for #84

chore run test on pushing to main for #84 #15

Workflow file for this run

name: Run Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20' # or another version you prefer
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test