Aleksander Wilczyński f10c623aa8
All checks were successful
Build project / build (push) Successful in 18s
Build project / build (pull_request) Successful in 18s
Update .gitea/workflows/build.yaml
2024-12-31 02:23:29 +01:00

21 lines
557 B
YAML

name: Build project
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Setup yarn
run: npm i yarn -g
- name: Install dependencies
run: yarn
- name: Compile sources
run: yarn build