馃か update: dot-ignore files #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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: Test suite | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| name: tests (${{ matrix.meteor }}) | |
| runs-on: ubuntu-latest | |
| # needs: [lintcode,lintstyle,lintdocs] # we could add prior jobs for linting, if desired | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| meteor: | |
| - '2.14' | |
| - '2.15' | |
| - '2.16' | |
| - '3.2' | |
| - '3.3.1' | |
| - '3.4.1' | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup meteor | |
| uses: meteorengineer/setup-meteor@v2 | |
| with: | |
| meteor-release: ${{ matrix.meteor }} | |
| - name: Install mTest | |
| run: | | |
| npm i -g @zodern/mtest | |
| - name: Run Tests | |
| run: | | |
| export NODE_TLS_REJECT_UNAUTHORIZED=0 | |
| mtest --package ./ --once ${{ matrix.meteor }} |