Skip to content

Commit

Permalink
fix: implement pull request validation pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerome Weiß committed Mar 1, 2023
1 parent f2ce07d commit f44d3eb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr-pipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: pr-pipeline
on:
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Clone project
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

- name: Install dependencies
run: npm ci

- name: Linting
run: npm run lint:ci

- name: Coverage
run: npm run cover:ci

0 comments on commit f44d3eb

Please sign in to comment.