Skip to content

Commit

Permalink
Create check-build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
neSpecc committed Feb 3, 2025
1 parent cc9160c commit d4fe0f9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/check-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Check Build

on:
pull_request:
branches:
- '**'

jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'

- name: Install dependencies
run: yarn install

- name: Build project
run: yarn build

0 comments on commit d4fe0f9

Please sign in to comment.