Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

feat: run lint and build on github actions #1

feat: run lint and build on github actions

feat: run lint and build on github actions #1

Workflow file for this run

name: Build
on:
push:
branches: main
pull_request:
branches: main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build