Skip to content

Commit 5ef61e0

Browse files
committed
implement 11.5 Linting workflow
1 parent 1d085ef commit 5ef61e0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/pipeline.yml

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

0 commit comments

Comments
 (0)