Skip to content

rename testing folder and scripts, add worklow to run typing tests #2

rename testing folder and scripts, add worklow to run typing tests

rename testing folder and scripts, add worklow to run typing tests #2

Workflow file for this run

name: Run Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Run functionality tests
run: npm run test:functionality
- name: Functionality tests passed
if: success()
run: echo "Functionality tests passed!"
- name: Run typing tests
run: npm run test:typing
- name: Typing tests passed
if: success()
run: echo "Typing tests passed!"