Skip to content

Fix build

Fix build #1

Workflow file for this run

name: Test Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
- name: Build the app
uses: borales/actions-yarn@v4
with:
cmd: build # will run `yarn build` command