Skip to content

add skeleton app to exercise task description #89

add skeleton app to exercise task description

add skeleton app to exercise task description #89

Workflow file for this run

name: Run Tests on Testing Example
on: [push]
jobs:
Tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: Examples/JavaScript/Testing
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm ci
- run: npm run build --if-present
- run: npm test