Skip to content

Commit 0dc2359

Browse files
committed
debug
Signed-off-by: wss <wssgryx@163.com>
1 parent 059969d commit 0dc2359

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Serverless Devs Project CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
ci:
13+
runs-on: ${{ matrix.os }}
14+
strategy:
15+
max-parallel: 3
16+
fail-fast: false
17+
matrix:
18+
os: [ubuntu-latest]
19+
steps:
20+
- uses: actions/checkout@v2
21+
- uses: actions/setup-node@v2
22+
with:
23+
node-version: 14
24+
registry-url: https://registry.npmjs.org/
25+
- name: NPM install
26+
run: export ABC=xxxx
27+
- run: echo $ABC
28+

0 commit comments

Comments
 (0)