Update module github.com/stretchr/testify to v1.12.1 #2862
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: Node | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| jobs: | |
| yarn: | |
| name: Run Node checks | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: client/web/ | |
| steps: | |
| - name: Check-out code | |
| uses: actions/checkout@v7 | |
| - name: Set up Node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - run: yarn install --immutable | |
| - run: yarn workspace @antrea/ui-components run build | |
| - run: yarn workspace @antrea/ui-plugin-sdk run build | |
| - run: yarn workspace antrea-ui run lint | |
| - run: yarn workspace antrea-ui run test | |
| ui-components: | |
| name: Run antrea-ui-components checks | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: client/web/ | |
| steps: | |
| - name: Check-out code | |
| uses: actions/checkout@v7 | |
| - name: Set up Node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - run: yarn install --immutable | |
| - run: yarn workspace @antrea/ui-components run lint | |
| - run: yarn workspace @antrea/ui-components run test |