Skip to content

setup workflow

setup workflow #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-and-test:
name: Install and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test