source: Klonkt/.github/workflows/ci.yml@ 4e5fe29

main
Last change on this file since 4e5fe29 was 8951629, checked in by Robin Genis <roboburr@…>, 2 months ago

docs: translate CI/Docker comments to English

  • .github/workflows/ci.yml — the docker-build step comment was Dutch.
  • Dockerfile — the multi-stage/builder/runtime/healthcheck comments were Dutch; translated. No build or behaviour changes (comments only).
  • Property mode set to 100644
File size: 498 bytes
Line 
1name: CI
2
3on:
4 push:
5 branches: [ main ]
6 pull_request:
7
8jobs:
9 test:
10 runs-on: ubuntu-latest
11 steps:
12 - uses: actions/checkout@v4
13 - uses: actions/setup-node@v4
14 with:
15 node-version: 20
16 cache: npm
17 - run: npm ci
18 - run: npm test
19
20 docker-build:
21 runs-on: ubuntu-latest
22 steps:
23 - uses: actions/checkout@v4
24 # Build the self-host image so a broken Dockerfile is caught immediately.
25 - run: docker build -t klonkt:ci .
Note: See TracBrowser for help on using the repository browser.