Skip to content

Commit

Permalink
Merge pull request #52 from SteakFisher/new
Browse files Browse the repository at this point in the history
Build test action, no buildy no pushy...
  • Loading branch information
thedevyashsaini authored Jul 19, 2024
2 parents 7e080e0 + f5df4ef commit bdbaf83
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/buildTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build Tests
on: [push, pull_request]

jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

0 comments on commit bdbaf83

Please sign in to comment.