Merge pull request #654 from SquareTable/remove-uuid-as-dependency #818
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: MainCI | |
| on: | |
| push: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [20.x] | |
| os: [ubuntu-22.04] | |
| shard: [1, 2, 3, 4, 5] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4.1.1 | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4.0.1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install packages | |
| run: npm ci | |
| - name: Run tests | |
| run: npx jest --shard=${{ matrix.shard }}/5 |