-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
39 lines (32 loc) · 851 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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