Skip to content

Merge pull request #52 from SteakFisher/new #1

Merge pull request #52 from SteakFisher/new

Merge pull request #52 from SteakFisher/new #1

Workflow file for this run

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