Skip to content

getting ready for release #1

getting ready for release

getting ready for release #1

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Run tests
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Single deploy job since we're just deploying
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v2
- name: install npms
run: npm install
- name: Run tests
run: npm test