Skip to content

Commit

Permalink
Create build.yml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
robschleusner authored and Juuddi committed Nov 21, 2023
1 parent 66e95ec commit 93e8224
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build on Push

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14' # or the version you need

- name: Install Dependencies
run: npm install

- name: Run Build
run: npm run build

0 comments on commit 93e8224

Please sign in to comment.