Skip to content

Commit

Permalink
ci: github action
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbento19 committed Aug 22, 2024
1 parent 439275f commit aca3c07
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Linter and Tester

on:
push:
branches:
- main

jobs:
linter-and-tester:
runs-on: ubuntu-latest

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

- name: Install packages
run: npm i

- name: Lint code
run: npm run lint

- name: Test code
run: npm test

0 comments on commit aca3c07

Please sign in to comment.