chore(deps): update ncipollo/release-action digest to 339a818 #504
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: CI | ||
| on: | ||
| # To be fixed | ||
| # push: | ||
| # branches: | ||
| # - main | ||
| # pull_request: | ||
| # branches: | ||
| # - main | ||
| jobs: | ||
| build: | ||
| name: test Node ${{ matrix.node }} ${{ matrix.os }} | ||
| timeout-minutes: 15 | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| matrix: | ||
| node: ['18.x'] | ||
| os: [ubuntu-latest, windows-latest] | ||
| steps: | ||
| - name: Checkout repo | ||
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | ||
| - name: Use Node ${{ matrix.node }} | ||
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | ||
| with: | ||
| node-version: ${{ matrix.node }} | ||
| - name: Install Dependencies | ||
| run: corepack enable && pnpm i | ||
| - name: Test | ||
| run: npm test -- --forceExit || npm test -- --forceExit || npm test -- --forceExit | ||