Skip to content

refactor: test before commit #2

refactor: test before commit

refactor: test before commit #2

Workflow file for this run

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