Skip to content

Bump jest-environment-jsdom from 29.4.1 to 29.7.0 #905

Bump jest-environment-jsdom from 29.4.1 to 29.7.0

Bump jest-environment-jsdom from 29.4.1 to 29.7.0 #905

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 16.17.1
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node
- run: yarn install
- run: yarn build
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 16.17.1
- run: yarn install
- run: ./node_modules/.bin/npm-install-peers
- run: yarn test && ./node_modules/.bin/codecov -t ${{secrets.CODECOV_REPO_TOKEN}}