Skip to content

updated to latest

updated to latest #30

Workflow file for this run

name: Run all tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out project
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Clean install the project
run: npm ci
- name: Execute all tests
run: npm test
env:
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }}