Skip to content

Commit

Permalink
feat(ci): add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-sanna-eki committed Nov 27, 2023
1 parent d9a0a1d commit 47d0db2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Run code quality checks

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install
- run: npm run lint

0 comments on commit 47d0db2

Please sign in to comment.