Skip to content

Commit

Permalink
Add a workflow to run unit tests on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
eyeseast committed Nov 14, 2023
1 parent 003f089 commit 8adbc2f
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 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Test

on:
push:
branches: [master]
pull_request:
branches: [master]

env:
NODE_ENV: production

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm ci
- run: npm run build --if-present
- run: npm test

0 comments on commit 8adbc2f

Please sign in to comment.