Skip to content

Commit

Permalink
Create checks.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Vidit-Kushwaha authored Nov 25, 2024
1 parent 5ee3c8a commit b8e453e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Checks
on:
pull_request:
branches: [ main ]
types: [opened, synchronize, reopened]


jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3

- name: NPM Install
run: npm install

- name: Build
run: npm run build

- name: Run Eslint
run: npm run lint

- name: Run Test
run: npm run test

0 comments on commit b8e453e

Please sign in to comment.