Skip to content

chore(deps-dev): bump babel-jest from 27.5.1 to 29.6.1 #360

chore(deps-dev): bump babel-jest from 27.5.1 to 29.6.1

chore(deps-dev): bump babel-jest from 27.5.1 to 29.6.1 #360

Workflow file for this run

name: Build and test
on:
push:
pull_request:
branches: [main]
jobs:
build-and-test-osx:
runs-on: macos-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
shell: bash
- run: yarn run dist:ci
shell: bash
- run: yarn link
shell: bash
- run: yarn run example:link
shell: bash
- run: yarn run example:install
shell: bash
- run: yarn run example:test:unit
shell: bash
- run: yarn run example:test:cy:run
shell: bash
build-and-test-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
shell: bash
- run: yarn run dist:ci
shell: bash
- run: yarn link
shell: bash
- run: yarn run example:link
shell: bash
- run: yarn run example:install
shell: bash
- run: yarn run example:test:unit
shell: bash
- run: yarn run example:test:cy:run
shell: bash
build-and-test-windows:
runs-on: windows-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
shell: bash
- run: yarn run dist:ci
shell: bash
- run: yarn link
shell: bash
- run: yarn run example:link
shell: bash
- run: yarn run example:install
shell: bash
- run: yarn run example:test:unit
shell: bash
- run: yarn run example:test:cy:run
shell: bash