Skip to content

fix(popup): delete popup param once displayed, ran format #5

fix(popup): delete popup param once displayed, ran format

fix(popup): delete popup param once displayed, ran format #5

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
verify:
runs-on: ubuntu-latest
env:
NEXT_PUBLIC_API_BASE_URL: http://127.0.0.1:9
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test
- name: Build
run: npm run build