Skip to content

SYS-153 build workflow on PR #2

SYS-153 build workflow on PR

SYS-153 build workflow on PR #2

Workflow file for this run

name: Build Workflow
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
build:
name: Run Build
runs-on: ubuntu-latest
container:
image: ghcr.io/shardeum/jenkins-test-container:latest
options: --user node
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies with npm ci
run: npm ci
- name: Build the project
run: npm run build:dev