Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
robandpdx committed Mar 16, 2023
1 parent 5f2e649 commit c5b6bd2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Main Tests
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
working-directory: ./.github/scripts
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
cache: npm
cache-dependency-path: ${{ env.working-directory }}/package-lock.json
- run: npm ci
working-directory: ${{ env.working-directory }}
- run: npm test
working-directory: ${{ env.working-directory }}

0 comments on commit c5b6bd2

Please # to comment.