Skip to content

More improvenments in Demo 3 #114

More improvenments in Demo 3

More improvenments in Demo 3 #114

Workflow file for this run

name: 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:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "tests"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3.5.1
with:
node-version: '18.12.1'
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm run test