Skip to content

Commit

Permalink
# Added Tools Testing workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Theo Truong <[email protected]>
  • Loading branch information
nhtruong committed Apr 9, 2024
1 parent 85e9ec3 commit 1d185eb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tools.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Tools Testing

on:
push:
branches: ['**']
paths:
- 'tools/**'
pull_request:
branches: ['**']
paths:
- 'tools/**'

jobs:
tools-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: tools
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.10.0
- run: npm install
- run: npm run test

0 comments on commit 1d185eb

Please sign in to comment.