Skip to content

Commit

Permalink
feat: ci pipeline for Syrup dev builds
Browse files Browse the repository at this point in the history
  • Loading branch information
cranberry3148 committed Dec 29, 2024
1 parent 3d9cfce commit 9be42ee
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build_extension.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Build Extension

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- run: |
cd Extension-React
npm i
npm run build
mv dist Syrup-dev
- name: Upload dist Artifact
uses: actions/upload-artifact@v4
with:
name: Syrup-dev
path: Extension-React/Syrup-dev

0 comments on commit 9be42ee

Please sign in to comment.