update-hotfix-HTTP-500-error-when-creating-a-document-or-a-revision-(… #1616
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: Lint on every push | |
on: | |
push: | |
jobs: | |
lint: | |
name: Lint | |
strategy: | |
fail-fast: false | |
matrix: | |
script: | |
- markdown | |
- ec | |
- json | |
- yaml | |
- cpd | |
- docker-compose | |
- dockerfile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Re-use NPM cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Pull container base image | |
run: | | |
docker compose \ | |
-f docker-compose-ci.yml \ | |
pull | |
- name: Re-use container image layers | |
uses: jpribyl/action-docker-layer-caching@v0.1.1 | |
continue-on-error: true | |
- name: Build container image | |
run: | | |
docker compose \ | |
-f docker-compose-ci.yml \ | |
build \ | |
--build-arg USER_ID="$(id -u)" \ | |
--build-arg GROUP_ID="$(id -g)" | |
- name: Install toolchain | |
run: | | |
docker compose \ | |
-f docker-compose-ci.yml \ | |
run docs \ | |
npm ci | |
- name: Run script | |
run: | | |
docker compose \ | |
-f docker-compose-ci.yml \ | |
run docs \ | |
npm run test:${{ matrix.script }} |