Skip to content

Update build.yml

Update build.yml #117

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Yarn Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Nodejs
uses: actions/setup-node@v4
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install
- name: Run build
uses: borales/actions-yarn@v4
with:
cmd: build