Skip to content

Commit 39517b4

Browse files
committed
ci: setup-node to fix pnpm requirement
1 parent 0ac402b commit 39517b4

1 file changed

Lines changed: 7 additions & 12 deletions

File tree

.github/workflows/CI.yml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ jobs:
2929
~/.pnpm-store
3030
key: apm-${{ runner.os }}-${{ matrix.atom_channel }}-${{ hashFiles('package.json') }}
3131

32-
- uses: UziTech/action-setup-atom@v1
32+
- uses: atom-community/action-setup-atom@v1
3333
with:
3434
channel: ${{ matrix.atom_channel }}
35+
- uses: actions/setup-node@v2
3536

3637
- name: Setup PNPM
3738
uses: pnpm/action-setup@master
@@ -73,11 +74,10 @@ jobs:
7374
~/.pnpm-store
7475
key: pnpm-${{ runner.os }}-${{ matrix.atom_channel }}-${{ hashFiles('package.json') }}
7576

76-
- uses: UziTech/action-setup-atom@v1
77+
- uses: atom-community/action-setup-atom@v1
7778
with:
7879
channel: ${{ matrix.atom_channel }}
79-
- name: Versions
80-
run: apm -v
80+
- uses: actions/setup-node@v2
8181

8282
- name: Setup PNPM
8383
uses: pnpm/action-setup@master
@@ -120,6 +120,8 @@ jobs:
120120
- uses: actions/checkout@v2
121121
with:
122122
fetch-depth: 0
123+
- uses: actions/setup-node@v2
124+
123125
- name: Commit lint ✨
124126
uses: wagoid/commitlint-github-action@v2
125127

@@ -139,18 +141,11 @@ jobs:
139141
# runs-on: ubuntu-latest
140142
# steps:
141143
# - uses: actions/checkout@v2
142-
# - uses: UziTech/action-setup-atom@v1
144+
# - uses: atom-community/action-setup-atom@v1
143145
# - uses: actions/setup-node@v1
144146
# with:
145147
# node-version: "12.x"
146148
# - name: NPM install
147149
# run: npm install
148150
# - name: Build and Commit
149151
# run: npm run build-commit
150-
151-
Skip:
152-
if: contains(github.event.head_commit.message, '[skip ci]')
153-
runs-on: ubuntu-latest
154-
steps:
155-
- name: Skip CI 🚫
156-
run: echo skip ci

0 commit comments

Comments
 (0)