move to code-maven.com #929
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
| name: NodeJS | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| nodejs: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runner: [ubuntu-latest] | |
| nodejs: [ 18.16 ] | |
| runs-on: ${{matrix.runner}} | |
| name: OS ${{matrix.runner}} NodeJS ${{matrix.nodejs}} | |
| steps: | |
| - name: Checkout this repo | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.nodejs }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.nodejs }} | |
| #- name: Show NodeJS Version | |
| # run: | | |
| # node -v | |
| # cd nodejs | |
| # npm install | |
| # npm test | |