Skip to content

examples: update screenshots #62

examples: update screenshots

examples: update screenshots #62

Workflow file for this run

name: Web Tests
on: [push, workflow_dispatch]
jobs:
web:
name: Test web
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
cache-dependency-path: web/yarn.lock
- name: Yarn Install
run: |
cd web && yarn install --frozen-lockfile && cd -
- name: ESLint
run: |
cd web && yarn eslint . --ext .js,.jsx
- name: Test with Vitest
run: |
cd web && yarn test