Skip to content

chore(deps): update actions/checkout action to v4.2.2 #2911

chore(deps): update actions/checkout action to v4.2.2

chore(deps): update actions/checkout action to v4.2.2 #2911

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
jobs:
build-deploy:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
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