videoclip.bg support #314
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |