Skip to content

Commit

Permalink
Add build test
Browse files Browse the repository at this point in the history
  • Loading branch information
wesley-dean-gsa committed Jul 17, 2024
1 parent b9d695a commit c2a9828
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Build and Test

# yamllint disable-line rule:truthy
on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Node
uses: actions/setup-node@v3
with:
node-version: '17.x'

- name: Install NPM dependencies
run: npm install

- name: Build site
run: npm run build

# - name: Run tests
# run: npm run test

0 comments on commit c2a9828

Please sign in to comment.