You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
411 B
YAML
19 lines
411 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
jobs:
|
|
container-test-job:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: node:14.16
|
|
env:
|
|
NODE_ENV: development
|
|
ports:
|
|
- 80
|
|
volumes:
|
|
- my_docker_volume:/volume_mount
|
|
options: --cpus 1
|
|
steps:
|
|
- name: Check for dockerenv file
|
|
run: (ls /.dockerenv && echo Found dockerenv) || (echo No dockerenv) |