Skip to content

chore(deps): bump the eslint group with 5 updates #1343

chore(deps): bump the eslint group with 5 updates

chore(deps): bump the eslint group with 5 updates #1343

Workflow file for this run

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' }}