Skip to content

Commit

Permalink
Merge pull request #102 from GSA-TTS/100-build-integration-tests
Browse files Browse the repository at this point in the history
Add build test
  • Loading branch information
wesley-dean-gsa authored Jul 22, 2024
2 parents b9d695a + c2a9828 commit 394450e
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 394450e

Please sign in to comment.