Bump flatted from 3.3.3 to 3.4.2 #32
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: | |
| - 'master' | |
| pull_request: | |
| branches: | |
| - '**' | |
| workflow_call: | |
| env: | |
| PRIMARY_NODE_VERSION: 24.x | |
| PRIMARY_OS: ubuntu-latest | |
| jobs: | |
| test: | |
| name: CI | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| node-version: [ 18.x, 20.x, 22.x, 24.x ] | |
| steps: | |
| - name: Echo env variables | |
| run: | | |
| echo ref: ${{ github.event.client_payload.ref || github.ref }} | |
| echo sha: ${{ github.event.client_payload.sha || github.sha }} | |
| echo head ref: ${{ github.event.client_payload.head_ref || github.head_ref }} | |
| echo base ref: ${{ github.event.client_payload.base_ref || github.base_ref }} | |
| echo action: ${{ github.action }} | |
| echo event: ${{ github.event_name }} | |
| - uses: actions/checkout@v5 | |
| name: Checkout | |
| with: | |
| ref: ${{ github.event.client_payload.ref || github.ref }} | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Get yarn cache directory | |
| id: yarn-cache-dir | |
| run: | | |
| echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT | |
| - uses: actions/cache@v4 | |
| id: yarn-cache | |
| with: | |
| path: ${{ steps.yarn-cache-dir.outputs.dir }} | |
| key: ${{ matrix.os }}-${{ matrix.node-version }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ matrix.os }}-${{ matrix.node-version }}-yarn- | |
| - name: Install dependencies and build | |
| run: | | |
| yarn install --frozen-lockfile | |
| yarn build | |
| - name: Snyk security check | |
| if: matrix.node-version == env.PRIMARY_NODE_VERSION && matrix.os == env.PRIMARY_OS && !github.event.pull_request.head.repo.fork | |
| uses: snyk/actions/node@master | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| - name: Run unit tests with coverage | |
| if: matrix.node-version == env.PRIMARY_NODE_VERSION && matrix.os == env.PRIMARY_OS && !github.event.pull_request.head.repo.fork | |
| run: yarn cover | |
| - name: Upload coverage | |
| if: matrix.node-version == env.PRIMARY_NODE_VERSION && matrix.os == env.PRIMARY_OS | |
| uses: qltysh/qlty-action/coverage@v2 | |
| with: | |
| token: ${{ secrets.QLTY_COVERAGE_TOKEN }} | |
| files: coverage/lcov.info | |
| - name: Run unit tests | |
| if: "!(matrix.node-version == env.PRIMARY_NODE_VERSION && matrix.os == env.PRIMARY_OS)" | |
| run: yarn test |