Skip to content

chore(deps): bump @types/node from 20.6.2 to 20.10.2 #1277

chore(deps): bump @types/node from 20.6.2 to 20.10.2

chore(deps): bump @types/node from 20.6.2 to 20.10.2 #1277

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]
version: ["", 827102, 120, dev]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/download-artifact@v3
with:
name: dist
- name: Install Google Chrome
uses: ./
with:
chrome-version: ${{ matrix.version }}
id: setup-chrome
- if: runner.os == 'Linux' || runner.os == 'macOS'
run: |
"${{ steps.setup-chrome.outputs.chrome-path }}" --version
- if: runner.os == 'Windows'
run: |
(Get-Item (Get-Command "${{ steps.setup-chrome.outputs.chrome-path }}").Source).VersionInfo.ProductVersion