Skip to content

Commit

Permalink
Created github action. Build
Browse files Browse the repository at this point in the history
  • Loading branch information
makeev-pavel authored Jan 10, 2025
1 parent 874c6d9 commit 8c72c3d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '22.x'

- name: Install
run: yarn

- name: Build
run: run build

0 comments on commit 8c72c3d

Please sign in to comment.