Skip to content

chore(deps): bump the production-dependencies group with 3 updates (#… #47

chore(deps): bump the production-dependencies group with 3 updates (#…

chore(deps): bump the production-dependencies group with 3 updates (#… #47

Workflow file for this run

name: Monitor
# Controls when the workflow will run
on:
# Triggers the workflow on push events but only for the "main" branch
push:
branches: ['main']
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
env:
BASE_URL: ${{ secrets.BASE_URL }}
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Install dependencies
run: npm ci
- name: Run automated accessibility checks
run: npm run test:e2e