Skip to content

Commit

Permalink
Merge pull request #393 from apigee/run-test
Browse files Browse the repository at this point in the history
Run test on PR
  • Loading branch information
ssvaidyanathan authored Oct 3, 2023
2 parents 8668bf3 + 68f4119 commit 6ec0f68
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This workflow will run tests using node when a PR is submitted
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: run-tests

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm test

0 comments on commit 6ec0f68

Please sign in to comment.