Skip to content

Commit a4395b1

Browse files
authored
Add CI Docker build verification job in main CI workflow (#407)
1 parent f173593 commit a4395b1

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
- gh-pages
1111
- main
1212

13+
permissions:
14+
contents: read
15+
1316
jobs:
1417
lint-and-test:
1518
runs-on: ubuntu-latest
@@ -39,3 +42,13 @@ jobs:
3942

4043
- name: Run tests
4144
run: npm test
45+
46+
docker-build-check:
47+
runs-on: ubuntu-latest
48+
49+
steps:
50+
- name: Checkout code
51+
uses: actions/checkout@v4
52+
53+
- name: Build Docker image
54+
run: docker build -f docker/Dockerfile .

0 commit comments

Comments
 (0)