Skip to content

Remove package.json workarounds #1030

Remove package.json workarounds

Remove package.json workarounds #1030

Workflow file for this run

name: "Test build"
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
NODE_VERSION: 18
jobs:
build_frontend:
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install dependencies
run: script/bootstrap
- name: Build
run: script/build
env:
IS_TEST: "true"