chore: ignore fflate updates in renovate (#661) #1793
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| - name: Install Packages | |
| run: npm install | |
| env: | |
| CI: true | |
| - name: Lint | |
| run: npm run lint | |
| - name: Lint Files, Dependencies, & Exports | |
| run: npm run lint:unused | |
| format: | |
| name: File Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| - name: Install Packages | |
| run: npm install | |
| env: | |
| CI: true | |
| - name: Prettier Check | |
| run: npm run fmt:check | |
| test: | |
| name: Test | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| eslint: [9.15.0, 9.x, 10.x] | |
| node: [26.x, 25.x, 24.x, 22.x, 20.x, "20.19.0"] | |
| include: | |
| - os: windows-latest | |
| eslint: latest | |
| node: lts/* | |
| - os: macOS-latest | |
| eslint: latest | |
| node: lts/* | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install Packages | |
| run: npm install | |
| env: | |
| CI: true | |
| - name: Install ESLint@${{ matrix.eslint }} | |
| run: npm install -D eslint@${{ matrix.eslint }} @eslint/js@${{ matrix.eslint }} | |
| - name: Test | |
| run: npm run test | |
| test_types: | |
| name: Test Types | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "lts/*" | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Check Types | |
| run: npm run test:types | |
| - name: Check Types (TypeScript 5.3) | |
| run: npm run test:types:5.3 | |
| - name: Check Types (TypeScript 5.x) | |
| run: npm run test:types:5.x | |
| - name: Check Types (TypeScript 7 preview) | |
| run: npm run test:types:7.x | |
| are_the_types_wrong: | |
| name: Are the types wrong? | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "lts/*" | |
| - name: Install Packages | |
| run: npm install | |
| - name: Check validity of type definitions | |
| run: npm run lint:types | |
| jsr_test: | |
| name: Verify JSR Publish | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "lts/*" | |
| - name: Install Packages | |
| run: npm install | |
| - name: Run --dry-run | |
| run: npm run test:jsr |