Skip to content

ci(workflow): 💚 add github workflow #1

ci(workflow): 💚 add github workflow

ci(workflow): 💚 add github workflow #1

Workflow file for this run

name: Build Chrome Extension
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install Dependencies
run: npm install
- name: Build Extension
run: npm run build