Skip to content

deploy when a tag is pushed #1

deploy when a tag is pushed

deploy when a tag is pushed #1

Workflow file for this run

name: Testing
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
unit-tests:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.7.0'
- run: |
cd api
npm ci
npm run test
integration-tests:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.7.0'
- run: |
cd api
npm ci
npm run test:integration