Skip to content

Update Style and add CI workflows. #1

Update Style and add CI workflows.

Update Style and add CI workflows. #1

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
workflow_dispatch:
permissions:
contents: write
packages: write
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Install npm
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build