Skip to content

build: add script dist-signed, rename dist-test to dist-debug #21

build: add script dist-signed, rename dist-test to dist-debug

build: add script dist-signed, rename dist-test to dist-debug #21

Workflow file for this run

name: Test build
on:
workflow_dispatch:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-scripts
- name: Type check
run: yarn tsc --noEmit
- name: Build
run: yarn build:ci