Compare commits

...

3 commits

Author SHA1 Message Date
Artis Blūms
3525471e02 Merge branch 'main' into add-deploy-workflow 2022-08-31 20:03:45 +03:00
Artis Blūms
e20bbe29fd fix: removes failing step 2022-08-07 22:34:25 +03:00
Artis Blūms
071c9971a7 feat: adds github deploy workflow 2022-08-06 20:52:08 +03:00
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/
.cache/
public
.idea