Skip to content

feat(integrations):integration template for teamtailor (#1748) #128

feat(integrations):integration template for teamtailor (#1748)

feat(integrations):integration template for teamtailor (#1748) #128

Workflow file for this run

name: Run Unit & Integration Tests
on:
push:
branches:
- master
- staging/**
pull_request:
concurrency:
group: tests-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 19.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm run build:hosted
- run: npm run test:unit
- run: npm run test:integration