We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f173593 commit a4395b1Copy full SHA for a4395b1
1 file changed
.github/workflows/ci.yml
@@ -10,6 +10,9 @@ on:
10
- gh-pages
11
- main
12
13
+permissions:
14
+ contents: read
15
+
16
jobs:
17
lint-and-test:
18
runs-on: ubuntu-latest
@@ -39,3 +42,13 @@ jobs:
39
42
40
43
- name: Run tests
41
44
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