We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4406197 + 3510524 commit 450068fCopy full SHA for 450068f
.github/workflows/test.yml
@@ -1,4 +1,4 @@
1
-name: Run tests
+name: Run Docker build and tests
2
3
on:
4
push:
@@ -13,11 +13,12 @@ permissions:
13
14
jobs:
15
test:
16
+ name: Run tests
17
runs-on: ubuntu-latest
18
steps:
- - uses: actions/checkout@v4.1.1
19
+ - uses: actions/checkout@v4
20
- - uses: actions/setup-node@v4.0.1
21
+ - uses: actions/setup-node@v4
22
with:
23
node-version: 14
24
cache: 'npm'
@@ -31,5 +32,11 @@ jobs:
31
32
- name: Run tests
33
run: npm test
34
35
+ docker-build:
36
+ name: Build Docker image
37
+ runs-on: ubuntu-latest
38
+ steps:
39
40
+
41
- name: Docker build
- run: docker build -t clearlydefined/website:latest .
42
+ run: docker build .
0 commit comments