mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 20:59:59 +00:00
62 lines
1.6 KiB
YAML
62 lines
1.6 KiB
YAML
name: Run tests
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [ current ]
|
|
|
|
jobs:
|
|
check-lockfile:
|
|
name: check lockfile correctness
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Check that lockfile does not need an update
|
|
run: |
|
|
cp package-lock.json before.json
|
|
npm ci
|
|
npm i --package-lock-only
|
|
diff before.json package-lock.json
|
|
|
|
test-web:
|
|
name: web sanity check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Run test script
|
|
run: .github/test.sh web
|
|
|
|
test-api:
|
|
name: api sanity check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Run test script
|
|
run: .github/test.sh api
|
|
|
|
check-services:
|
|
name: test service functionality
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
services: ${{ steps.checkServices.outputs.service_list }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- id: checkServices
|
|
run: npm ci && echo "service_list=$(node src/util/test-ci get-services)" >> "$GITHUB_OUTPUT"
|
|
|
|
test-services:
|
|
needs: check-services
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
service: ${{ fromJson(needs.check-services.outputs.services) }}
|
|
name: "test service: ${{ matrix.service }}"
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- run: npm ci && node src/util/test-ci run-tests-for ${{ matrix.service }} |