Skip to content

Commit

Permalink
Merge pull request #43 from massalabs/add-ci-build
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow for front-end build process
  • Loading branch information
Ben-Rey authored Jan 20, 2025
2 parents c76f108 + f82609f commit df92e64
Show file tree
Hide file tree
Showing 2 changed files with 1,727 additions and 294 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/front-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

on:
push:
branches: [main, buildnet]
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
cache-dependency-path: frontend/package-lock.json

- name: Install
run: npm ci
working-directory: frontend

- name: Build
run: npm run build
working-directory: frontend
Loading

0 comments on commit df92e64

Please sign in to comment.