main
|
Last change
on this file since b05eb97 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
|
| Rev | Line | |
|---|
| [19b0727] | 1 | name: CI
|
|---|
| 2 |
|
|---|
| 3 | on:
|
|---|
| 4 | push:
|
|---|
| 5 | branches: [ main ]
|
|---|
| 6 | pull_request:
|
|---|
| 7 |
|
|---|
| 8 | jobs:
|
|---|
| 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
|
|---|
| [8951629] | 24 | # Build the self-host image so a broken Dockerfile is caught immediately.
|
|---|
| [19b0727] | 25 | - run: docker build -t klonkt:ci .
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.