diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..f10d5d08 --- /dev/null +++ b/.github/workflows/test.yml @@ -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