Skip to content

Run accessibility tests #59

Run accessibility tests

Run accessibility tests #59

name: Run accessibility tests
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install Yarn
run: |
npm install --global yarn
- name: Install dependencies
run: |
yarn install
- name: Build project
run: |
yarn build
- name: Run tests
run: |
yarn test