Skip to content

Commit

Permalink
test % lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
techeca committed Jul 4, 2024
1 parent 514229f commit 6e05844
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tests & Lint CI

on:
push:
branches:
- 'feature/*'

jobs:
test:
name: Run Tests & Lint
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install dependencies
run: npm install

- name: Run linting
run: npm run lint

0 comments on commit 6e05844

Please sign in to comment.