Enable type checking and support Babel 8 #507
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: babel-loader | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| test: | |
| name: Test - ${{ matrix.os }} - Node ${{ matrix.node-version }}, Webpack ${{ matrix.webpack-version }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| node-version: [20, 22, 24] | |
| babel-version: ["7", "8"] | |
| webpack-version: ["5"] | |
| include: | |
| - node-version: "18" | |
| webpack-version: "5" | |
| babel-version: "7" | |
| os: ubuntu-latest | |
| - node-version: "18" | |
| webpack-version: "5" | |
| babel-version: "7" | |
| os: windows-latest | |
| - node-version: "18.20.0" # The minimum supported node version | |
| webpack-version: "5.61.0" # The minimum supported webpack version | |
| babel-version: "7" | |
| os: ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Install webpack ${{ matrix.webpack-version }} | |
| run: yarn add -D webpack@${{ matrix.webpack-version }} | |
| - name: Downgrade to Babel 7 | |
| if: matrix.babel-version == '7' | |
| run: yarn up @babel/*@^7 | |
| - name: Build babel-loader | |
| run: yarn run build | |
| - name: Run tests for webpack version ${{ matrix.webpack-version }} | |
| run: yarn test-only | |
| lint-coverage: | |
| name: Lint and Coverage - ${{ matrix.os }} - Node ${{ matrix.node-version }}, Webpack 5 | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Run tsc | |
| run: yarn tsc | |
| - name: Run lint and coverage tests | |
| run: yarn test | |
| - name: Submit coverage data to codecov | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |