Skip to content

feat: add GitHub Actions workflow for testing and linting #1

feat: add GitHub Actions workflow for testing and linting

feat: add GitHub Actions workflow for testing and linting #1

Workflow file for this run

name: testing
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install dependencies
run: |
npm clean-install
- name: Run linter
run: |
npm run lint