Add yarn
All checks were successful
Deploy / Deploy (push) Successful in 1m20s

This commit is contained in:
2024-06-10 09:48:04 +03:00
parent bda61b1302
commit 57afc4dca1

15
.gitea/workflows/ci.yaml Normal file
View File

@@ -0,0 +1,15 @@
name: Deploy
on: [push]
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install yarn
run: npm i -g yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build project
run: yarn build