Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Build

Build #296

Workflow file for this run

name: Build
on:
workflow_run:
workflows: ["ESLint"]
types:
- completed
jobs:
build:
name: Build and Test
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build the application
run: yarn build