Skip to content

Merge pull request #7 from friedalexuni/main #9

Merge pull request #7 from friedalexuni/main

Merge pull request #7 from friedalexuni/main #9

Workflow file for this run

name: Automated Public Tests
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v4
- name: Setup Node and NPM
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
test:
if: github.repository != 'riehlegroup/adap-names'
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v4
- name: Setup Node and NPM
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm ci
- name: Run tests for exercise B01
run: npm run test:b01
if: ${{ !cancelled() }}
- name: Run tests for exercise B02
run: npm run test:b02
if: ${{ !cancelled() }}
- name: Run tests for exercise B03
run: npm run test:b03
if: ${{ !cancelled() }}
- name: Run tests for exercise B04
run: npm run test:b04
if: ${{ !cancelled() }}
- name: Run tests for exercise B05
run: npm run test:b05
if: ${{ !cancelled() }}
- name: Run tests for exercise B06
run: npm run test:b06
if: ${{ !cancelled() }}