Skip to content

Commit

Permalink
ci: PR pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
muratcorlu committed Mar 18, 2024
1 parent 71beb6c commit aaf9925
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pull Requests

on:
pull_request:
branches:
- master

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- name: Install dependencies
run: npm ci
- name: Lint files
run: npm run lint
- name: Run Tests
run: npm run test
- uses: codecov/codecov-action@v3

0 comments on commit aaf9925

Please sign in to comment.