Skip to content

GitHub Desktop Pull Request Notification Testing - Failed Unit Tests #5

GitHub Desktop Pull Request Notification Testing - Failed Unit Tests

GitHub Desktop Pull Request Notification Testing - Failed Unit Tests #5

Workflow file for this run

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: Build production app
run: yarn build:dev
- name: Prepare testing environment
run: yarn test:setup
env:
npm_config_arch: ${{ matrix.arch }}
- name: Run unit tests
run: yarn test:unit
- name: Run script tests
run: yarn test:script