Skip to content

update button test snapshot #41

update button test snapshot

update button test snapshot #41

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Install Yarn
run: corepack enable && corepack prepare yarn@stable --activate
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test