Skip to content

Commit 329eca7

Browse files
solution exercise 11.5
1 parent b0dba94 commit 329eca7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/pipeline.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Pipeline
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
simple_deployment_pipeline:
10+
runs-on: ubuntu-20.04
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: '20'
17+
- name: Install dependencies
18+
run: npm install
19+
20+
- name: Check style
21+
run: npm run eslint

0 commit comments

Comments
 (0)