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

Update README.md

Update README.md #118

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Set node
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Setup
run: npm i -g @antfu/ni
- name: Install
run: nci
- name: Lint
run: nr style
- name: Build
run: nr build
- name: zip bundle file
run: zip -r ai-group-tabs.zip dist/
- name: Upload package
uses: actions/upload-artifact@v3
with:
name: ai-group-tabs
path: ai-group-tabs.zip
retention-days: 5