Skip to content

Commit

Permalink
ci(workflow): 💚 add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mcnaveen committed Dec 20, 2023
1 parent c82f3ae commit aaf8ff6
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# React TypeScript + Vite Chrome Extension Starter

![build](https://github.com/timelessco/react-vite-chrome-extension/workflows/build/badge.svg)

![react-vite-chrome-extension](./assets/cover.png)

This project is a boilerplate for creating a Google Chrome Extension with React + Vitejs + TailwindCSS + TypeScript.
Expand Down

0 comments on commit aaf8ff6

Please sign in to comment.