Skip to content

feat: initial release #1

feat: initial release

feat: initial release #1

Workflow file for this run

name: Pull Request
on:
pull_request:

Check failure on line 4 in .github/workflows/pull_request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull_request.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
branches:
- main
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm clean-install
- name: Lint
run: npm run lint
- name: Test
run: npm run test