We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b636132 commit 24a6e47Copy full SHA for 24a6e47
.github/workflows/CI.yml
@@ -1,7 +1,9 @@
1
name: CI
2
on:
3
- - push
4
- - pull_request
+ pull_request:
+ push:
5
+ branches:
6
+ - master
7
8
defaults:
9
run:
@@ -21,15 +23,20 @@ jobs:
21
23
# - windows-latest
22
24
atom_channel: [stable, beta]
25
steps:
- - uses: actions/checkout@v3
- - uses: UziTech/action-setup-atom@v1
26
+ - name: Install Node
27
+ uses: actions/setup-node@v3
28
with:
- channel: ${{ matrix.atom_channel }}
- - name: Versions
29
- run: apm -v
30
- - name: Install APM dependencies
+ node-version: 12
+ architecture: x64
31
+
32
+ - name: Setup pnpm
33
+ uses: pnpm/action-setup@v2
34
+ with:
35
+ version: 6
36
37
+ - name: Install and build
38
run: |
- apm install
39
+ pnpm install
40
41
Lint:
42
if: "!contains(github.event.head_commit.message, '[skip ci]')"
0 commit comments