Skip to content

chore(dev-deps): update dependency @testing-library/jest-dom to v6 #336

chore(dev-deps): update dependency @testing-library/jest-dom to v6

chore(dev-deps): update dependency @testing-library/jest-dom to v6 #336

Workflow file for this run

name: Verify
on:
pull_request:
branches:
- main
env:
NODE_VERSION: 16.x
jobs:
build:
name: Verify Build
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use NodeJS ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test
run: yarn test
- name: Build
run: yarn build