Skip to content

Add initial CI/CD workflow #24

Add initial CI/CD workflow

Add initial CI/CD workflow #24

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
env:
node_version: ${{ vars.NODE_VERSION }}
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Setup
uses: ./.github/workflows/setup
with:
node_version: ${{ env.node_version }}
- name: Build application
run: npm run build