diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ed126ad3..23ab0565 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,17 +1,17 @@ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: build and tests +name: build and test on: [push] jobs: - build: + build-and-test: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [lts/*] steps: - uses: actions/checkout@v2