Skip to content

Commit aaf9925

Browse files
committed
ci: PR pipeline
1 parent 71beb6c commit aaf9925

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/pr.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Pull Requests
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check out code
13+
uses: actions/checkout@v3
14+
with:
15+
fetch-depth: 0
16+
- uses: actions/setup-node@v3
17+
- name: Install dependencies
18+
run: npm ci
19+
- name: Lint files
20+
run: npm run lint
21+
- name: Run Tests
22+
run: npm run test
23+
- uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)