refactor: test before commit #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |