2020-02-10 23:27:05 +00:00
|
|
|
name: job-container
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
2021-06-10 23:12:05 +00:00
|
|
|
container:
|
2021-12-22 19:34:18 +00:00
|
|
|
image: node:16-buster-slim
|
2020-02-10 23:27:05 +00:00
|
|
|
env:
|
|
|
|
TEST_ENV: test-value
|
|
|
|
steps:
|
|
|
|
- run: echo ${TEST_ENV} | grep test-value
|
2020-02-25 06:35:08 +00:00
|
|
|
|
|
|
|
test2:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-22 19:34:18 +00:00
|
|
|
container: node:16-buster-slim
|
2020-02-25 06:35:08 +00:00
|
|
|
steps:
|
|
|
|
- run: echo ${TEST_ENV} | grep test-value
|
|
|
|
env:
|
|
|
|
TEST_ENV: test-value
|