Skip to content

Merge pull request #102 from kloV148/gh-actions-fix #2

Merge pull request #102 from kloV148/gh-actions-fix

Merge pull request #102 from kloV148/gh-actions-fix #2

name: Run build check
on:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Run yarn build
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build