Updated rollup. #4
Workflow file for this run
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: Test Matrix | |
| on: push | |
| jobs: | |
| build: | |
| continue-on-error: true | |
| strategy: | |
| matrix: | |
| node-version: [16, 18, 20] | |
| operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
| runs-on: ${{ matrix.operating-system }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install and Cache Dependencies | |
| uses: ./.github/actions/cached-deps | |
| - name: Clean and Reinstall (macOS only) | |
| if: runner.os == 'macOS' | |
| run: | | |
| rm -rf node_modules | |
| rm -f package-lock.json | |
| npm install | |
| - name: Build | |
| run: npm run build | |
| test: | |
| continue-on-error: true | |
| strategy: | |
| matrix: | |
| node-version: [16, 18, 20] | |
| operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
| runs-on: ${{ matrix.operating-system }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install and Cache Dependencies | |
| uses: ./.github/actions/cached-deps | |
| - name: Clean and Reinstall (macOS only) | |
| if: runner.os == 'macOS' | |
| run: | | |
| rm -rf node_modules | |
| rm -f package-lock.json | |
| npm install | |
| - name: Test | |
| run: npm run test |