Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit d6587c5

Browse files
scagoodUziTech
andauthored
ci: use pulsar in ci (#39)
* ci: use pulsar in ci * chore: use ppm on windows * chore: only use one version of node per build * chore: install npm packages on windows * ci: hack to install deps on windows (#1) --------- Co-authored-by: Tony Brix <[email protected]>
1 parent da7cee9 commit d6587c5

File tree

7 files changed

+517
-33
lines changed

7 files changed

+517
-33
lines changed

.github/workflows/CI.yml

+25-24
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,25 @@ on:
66

77
jobs:
88
Test:
9-
name: ${{ matrix.os }} - Atom ${{ matrix.atom_channel }} - node ${{ matrix.node_version }}
9+
name: ${{ matrix.os }} - Pulsar
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [ubuntu-latest, macos-latest, windows-latest]
15-
atom_channel: [stable, beta]
16-
node_version: ['lts/*']
17-
include:
18-
- os: ubuntu-latest
19-
atom_channel: stable
20-
node_version: '*'
14+
os:
15+
- ubuntu-latest
16+
- macos-latest
17+
- windows-latest
2118
steps:
2219
- uses: actions/checkout@v3
23-
- uses: UziTech/action-setup-atom@v3
24-
with:
25-
version: ${{ matrix.atom_channel }}
20+
- uses: pulsar-edit/[email protected]
2621
- uses: actions/setup-node@v3
2722
with:
28-
node-version: ${{ matrix.node_version }}
29-
- uses: volta-cli/action@v1.7.0
23+
node-version: 'lts/*'
24+
- uses: volta-cli/action@v4
3025
- name: Install multiple Node versions
3126
if: runner.os != 'Windows'
3227
run: |
33-
volta install node@10
34-
echo "NODE_10=$(volta which node)" >> $GITHUB_ENV
35-
echo "NODE_10_VERSION=$(node --version)" >> $GITHUB_ENV
3628
volta install node@latest
3729
echo "NODE_LATEST=$(volta which node)" >> $GITHUB_ENV
3830
echo "NODE_LATEST_VERSION=$(node --version)" >> $GITHUB_ENV
@@ -42,9 +34,6 @@ jobs:
4234
- name: Install multiple Node versions (Windows)
4335
if: runner.os == 'Windows'
4436
run: |
45-
volta install node@10
46-
echo "NODE_10=$(volta which node)" >> $env:GITHUB_ENV
47-
echo "NODE_10_VERSION=$(node --version)" >> $env:GITHUB_ENV
4837
volta install node@latest
4938
echo "NODE_LATEST=$(volta which node)" >> $env:GITHUB_ENV
5039
echo "NODE_LATEST_VERSION=$(node --version)" >> $env:GITHUB_ENV
@@ -67,14 +56,26 @@ jobs:
6756
npm init --yes
6857
npm install eslint@latest
6958
cd ..
59+
- name: Install dependencies (Windows)
60+
if: runner.os == 'Windows'
61+
run: |
62+
ppm install
63+
npm install
64+
npx atom-package-deps ./windows-deps
7065
- name: Install dependencies
66+
if: runner.os != 'Windows'
67+
run: |
68+
pulsar --package install
69+
pulsar --package install linter-eslint
70+
npx atom-package-deps .
71+
- name: List dependencies
7172
run: |
72-
apm install
73-
apm install linter-eslint
74-
# ./node_modules/.bin/atom-package-deps .
73+
pulsar --package list --enabled --packages
7574
7675
- name: Run tests 👩🏾‍💻
77-
run: npm run test
76+
uses: coactions/setup-xvfb@v1
77+
with:
78+
run: pulsar --test spec
7879

7980
Lint:
8081
runs-on: ubuntu-latest
@@ -105,7 +106,7 @@ jobs:
105106
runs-on: ubuntu-latest
106107
steps:
107108
- uses: actions/checkout@v3
108-
- uses: UziTech/action-setup-atom@v3
109+
- uses: pulsar-edit/action-pulsar-dependency@v3.3
109110
- uses: actions/setup-node@v3
110111
with:
111112
node-version: "lts/*"

0 commit comments

Comments
 (0)