Skip to content

Build and Zip Extension #6

Build and Zip Extension

Build and Zip Extension #6

Workflow file for this run

name: Build and Zip Extension
on:
workflow_dispatch:
jobs:
build:
name: Build
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Upload extension artifacts
uses: actions/upload-artifact@v3
with:
name: vite-web-extension
path: dist