Skip to content

chore(deps-dev): bump rimraf from 4.4.0 to 5.0.7 in /desktop-app #1089

chore(deps-dev): bump rimraf from 4.4.0 to 5.0.7 in /desktop-app

chore(deps-dev): bump rimraf from 4.4.0 to 5.0.7 in /desktop-app #1089

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./desktop-app
strategy:
matrix:
os: [macos-latest]
fail-fast: false
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Node.js and NPM
uses: actions/setup-node@v3
with:
node-version: 16
cache: ${{ !env.ACT && 'npm' || '' }} # Disable cache for nektos/act
cache-dependency-path: ./desktop-app/yarn.lock
- name: yarn install
run: |
yarn install --network-timeout 120000
- name: yarn test
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn run package
yarn run lint
yarn exec tsc
yarn test