chore(deps): bump the jest group with 4 updates #1177
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'build-test' | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
- master | |
workflow_call: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: 'package.json' | |
cache: 'pnpm' | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm lint | |
- run: pnpm test | |
- run: pnpm build | |
- run: pnpm package | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: ./dist/ | |
test: | |
needs: [build] | |
strategy: | |
matrix: | |
os: [ubuntu, macos, windows] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
- name: "Install default channel on ${{ matrix.os }}" | |
uses: ./ | |
- name: "Install stable channel on ${{ matrix.os }}" | |
uses: ./ | |
with: | |
edge-version: stable | |
- name: "Install beta channel on ${{ matrix.os }}" | |
uses: ./ | |
with: | |
edge-version: beta | |
- name: "Install dev channel on ${{ matrix.os }}" | |
uses: ./ | |
with: | |
edge-version: dev | |
- name: "Install canary channel on ${{ matrix.os }}" | |
uses: ./ | |
with: | |
edge-version: canary | |
# Canary channel for linux is not currently supported | |
if: ${{ matrix.os != 'ubuntu' }} |