-
Notifications
You must be signed in to change notification settings - Fork 11
64 lines (56 loc) · 1.52 KB
/
CI.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: CI
on:
pull_request:
push:
branches:
- master
jobs:
Test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
name: ${{ matrix.os }} - Atom ${{ matrix.atom_channel }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# - macos-latest
# - windows-latest
atom_channel: [stable, beta]
steps:
- uses: actions/checkout@v2
- uses: atom-community/action-setup-atom@v1
with:
channel: ${{ matrix.atom_channel }}
- name: Install dependencies
run: |
apm install --production
npm install --only=dev
# The tests are flaky
- name: Run tests
uses: nick-invision/retry@v2
with:
timeout_minutes: 1
max_attempts: 3
command: npm run test
Lint:
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, 'Prepare ')"
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Commit lint ✨
uses: wagoid/commitlint-github-action@v2
- name: Setup Pnpm
uses: pnpm/action-setup@v2
with:
version: 6
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Format ✨
run: pnpm run test.format
- name: Lint
run: pnpm run test.lint