Skip to content

chore: add GitHub Actions workflows for testing on push and release #1

chore: add GitHub Actions workflows for testing on push and release

chore: add GitHub Actions workflows for testing on push and release #1

Workflow file for this run

name: Run Tests on Push
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test