fix(deps): update all minor dependencies #3248
This file contains 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: Run Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-deploy: | |
name: Run Tests | |
runs-on: ubuntu-22.04 # latest version 24 has incompatibility issues (playwright) | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-node@48b90677b6048efbc723b11a94acb950d3f1ac36 | |
with: | |
node-version: 18 | |
- name: Install gcds-components | |
run: npm ci | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
- name: Build repo | |
run: npm run build | |
- name: Run tests | |
run: npm run test |