Test build pipeline
This commit is contained in:
parent
73b5ce09e3
commit
c397e365dc
1 changed files with 6 additions and 2 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
@ -1,9 +1,11 @@
|
||||||
name: CI
|
name: Test build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
container-test-job:
|
build:
|
||||||
runs-on: [moon, amd64]
|
runs-on: [moon, amd64]
|
||||||
container:
|
container:
|
||||||
image: node:18
|
image: node:18
|
||||||
|
@ -17,3 +19,5 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Check for dockerenv file
|
- name: Check for dockerenv file
|
||||||
run: (ls /.dockerenv && echo Found dockerenv) || (echo No dockerenv)
|
run: (ls /.dockerenv && echo Found dockerenv) || (echo No dockerenv)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue