build(deps): bump electron from 17.1.2 to 22.3.21 in /packages/client/window-manager #16
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: Check | |
on: | |
- pull_request | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- '16' | |
platform: | |
- windows-latest | |
name: '${{ matrix.platform }} / Node.js v${{ matrix.node }}' | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Configure Git | |
run: | | |
git config --global core.autocrlf false | |
git config --global user.name "xyz" | |
git config --global user.email "x@y.z" | |
- name: Checkout Commit | |
uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install pnpm | |
run: | | |
npm install --g pnpm@6.32.0 | |
- name: Install Packages | |
run: pnpm install | |
- name: Run Tests | |
run: | | |
pnpm run lint | |
pnpm run test | |
- name: Build App | |
run: pnpm run generate |