Skip to content

develop -> main

develop -> main #729

Workflow file for this run

name: Test Project
on:
pull_request:
branches: [develop, module, release, main]
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16.x"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm -w frontend run test