drop macOS 13 tests, add macOS 15 Intel and macOS 26 ARM tests #43
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: Old Node Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| node: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [16.6.0, 16.x, 17.0.0, 17.x] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| check-latest: true | |
| - name: Install packages | |
| run: npm ci | |
| - name: Run tests | |
| run: npx ts-node tests/old-node.ts | |
| - name: Upload mysqlmsn directory | |
| if: ${{ failure() }} | |
| uses: actions/[email protected] | |
| with: | |
| name: node-${{ matrix.node-version }} | |
| path: /tmp/mysqlmsn | |
| compression-level: 9 |