fix: 1929 - follow on fixes to pr 1922 #3063
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
| # This workflow performs basic checks: | |
| # | |
| # 1. run a preparation step to install and cache node modules | |
| # 2. once prep succeeds, run lint and test in parallel | |
| name: Checks | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| env: | |
| NODE: 20 | |
| jobs: | |
| prep: | |
| if: github.event.pull_request.draft == false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@0.9.1 | |
| with: | |
| access_token: ${{ github.token }} | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ env.NODE }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| - name: Cache node_modules | |
| uses: actions/cache@v3 | |
| id: cache-node-modules | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | |
| - name: Install | |
| run: yarn | |
| lint: | |
| needs: prep | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ env.NODE }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| - name: Cache node_modules | |
| uses: actions/cache@v3 | |
| id: cache-node-modules | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | |
| - name: Install | |
| run: yarn install | |
| - name: Install Storybook Dependencies | |
| run: cd storybook && yarn install | |
| - name: Lint JS and CSS | |
| run: yarn lint | |
| ts-check: | |
| needs: prep | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ env.NODE }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| - name: Cache node_modules | |
| uses: actions/cache@v3 | |
| id: cache-node-modules | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | |
| - name: Install | |
| run: yarn install | |
| - name: Install Storybook Dependencies | |
| run: cd storybook && yarn install | |
| - name: Check TS errors | |
| run: yarn ts-check | |
| test: | |
| needs: prep | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ env.NODE }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| - name: Cache node_modules | |
| uses: actions/cache@v3 | |
| id: cache-node-modules | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | |
| - name: Install | |
| run: yarn install | |
| - name: Install Storybook Dependencies | |
| run: cd storybook && yarn install | |
| - name: Test | |
| run: yarn test | |
| - name: Build library | |
| run: yarn buildlib | |
| playwright: | |
| timeout-minutes: 60 | |
| needs: prep | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ env.NODE }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| - name: Cache node_modules | |
| uses: actions/cache@v3 | |
| id: cache-node-modules | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | |
| - name: Install | |
| run: yarn install | |
| - name: Install Storybook Dependencies | |
| run: cd storybook && yarn install | |
| - name: Install Playwright Browsers | |
| run: npx playwright install --with-deps | |
| - name: Run Playwright tests | |
| run: MAPBOX_TOKEN="${{secrets.MAPBOX_TOKEN}}" yarn test:e2e | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |