From c8e27e8bf15eee3bfee6c2358b11d53a789df1be Mon Sep 17 00:00:00 2001 From: Gethin Webster Date: Thu, 10 Oct 2024 09:50:29 +0200 Subject: [PATCH] Quick release --- .github/workflows/release.yml | 46 ----------------------------------- 1 file changed, 46 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 443511247c..08ec8f7d41 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,54 +13,8 @@ permissions: contents: read jobs: - unitTest: - name: Components unit tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: 18 - - run: npm install - - run: npm run build - - run: npm run test:unit - - integTest: - name: Components integ tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: 18 - - run: npm install - - run: npm run build - - run: npm run test:integ - - a11yTest: - name: Components a11y tests - runs-on: ubuntu-latest - strategy: - matrix: - shard: [1, 2, 3, 4, 5, 6] - steps: - - uses: actions/checkout@v4 - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: 18 - - run: npm install - - run: npm run build - - run: npm run test:a11y -- --shard=${{ matrix.shard }}/${{ strategy.job-total }} - release: uses: cloudscape-design/actions/.github/workflows/release.yml@main secrets: inherit with: skip-test: true - needs: - - unitTest - - integTest - - a11yTest