Skip to content

add repo in package.json #7

add repo in package.json

add repo in package.json #7

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
- name: Install dependencies
run: npm install
- name: Eslint
run: npm run lint
- name: Build
run: npm run build