Skip to content

Commit

Permalink
cd: add pre-build check
Browse files Browse the repository at this point in the history
  • Loading branch information
sg-gs committed Nov 23, 2023
1 parent b012111 commit d704be4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pre-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Pre build ( Health check )
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
strategy:
matrix:
node-version: [16.x]
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v3

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2

- name: Install dependencies
run: yarn --ignore-engines

- name: Build
run: yarn build

0 comments on commit d704be4

Please sign in to comment.