Skip to content

actually use github actions properly #2

actually use github actions properly

actually use github actions properly #2

Workflow file for this run

name: test
on:
push:
pull_request:
types: [opened, synchronize]
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 21.6.x
registry-url: 'https://registry.npmjs.org/'
- name: Lint
run: npm run test