GitHub Desktop Pull Request Notification Testing - Failed Unit Tests #6
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: CI | |
on: | |
push: | |
branches: | |
- development | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
env: | |
RELEASE_CHANNEL: development | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.17.1 | |
cache: yarn | |
- run: yarn | |
- run: yarn validate-electron-version | |
- run: yarn lint | |
- run: yarn validate-changelog | |
- name: Ensure a clean working directory | |
run: git diff --name-status --exit-code | |
build: | |
name: ${{ matrix.friendlyName }} ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [18.16.1] | |
os: [macos-latest] | |
arch: [x64] | |
include: | |
- os: macos-latest | |
friendlyName: macOS | |
timeout-minutes: 60 | |
env: | |
RELEASE_CHANNEL: development | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.repository }} | |
ref: ${{ github.ref }} | |
submodules: recursive | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: Install and build dependencies | |
run: yarn | |
env: | |
npm_config_arch: ${{ matrix.arch }} | |
TARGET_ARCH: ${{ matrix.arch }} | |
- name: Prepare testing environment | |
run: yarn test:setup | |
env: | |
npm_config_arch: ${{ matrix.arch }} | |
- name: Run unit tests | |
run: yarn test:unit |