Skip to content

Commit

Permalink
running tests on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
diasbruno authored Nov 24, 2022
1 parent 8a74268 commit 1a8f562
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test

on:
pull_request:
branches:
- master
- v4
- chore/github-actions

jobs:
main:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1

- uses: actions/setup-node@v2
with:
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: make deps-project tests-ci

0 comments on commit 1a8f562

Please sign in to comment.