Build(deps): Bump @aws-sdk/credential-providers from 3.1000.0 to 3.1004.0 in /next-frontend #1719
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: Javascript tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'next-frontend/**/*' | |
| - '.env*' | |
| - 'docker-compose.yml' | |
| - 'Dockerfile*' | |
| - '.github/workflows/js-test.yml' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| NODE_ENV: test | |
| NODE_MAJOR: 24 | |
| defaults: | |
| run: | |
| working-directory: next-frontend | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Corepack/Yarn | |
| run: corepack enable # this allows NPM to use its own Yarn. It is crucial that this is run BEFORE the Node setup! | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.NODE_MAJOR }} | |
| cache: 'yarn' | |
| - name: Install fresh Yarn packages | |
| run: yarn install | |
| - name: Check types | |
| run: yarn run check:types | |
| - name: Run Lint | |
| run: yarn run lint | |
| - name: Create dummy fonts | |
| shell: bash | |
| run: | | |
| mkdir ./src/styles/fonts/TTNormsPro | |
| for style in Light Light_Italic Regular Medium Bold Condensed_ExtraBold; do | |
| touch "./src/styles/fonts/TTNormsPro/TT_Norms_Pro_${style}.woff2" | |
| done | |
| - name: Run build | |
| run: yarn run build |