This commit is contained in:
Artis Blūms 2026-07-24 16:21:21 +03:00 committed by GitHub
commit 6c2f518c9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

26
.github/workflows/deploy.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: deploy
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
yarn
yarn build

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
node_modules/ node_modules/
.cache/ .cache/
public public
.idea