6
6
7
7
jobs :
8
8
Test :
9
- name : ${{ matrix.os }} - Atom ${{ matrix.atom_channel }} - node ${{ matrix.node_version }}
9
+ name : ${{ matrix.os }} - Pulsar
10
10
runs-on : ${{ matrix.os }}
11
11
strategy :
12
12
fail-fast : false
13
13
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
21
18
steps :
22
19
- uses : actions/checkout@v3
23
- - uses : UziTech/action-setup-atom@v3
24
- with :
25
- version : ${{ matrix.atom_channel }}
20
+ -
uses :
pulsar-edit/[email protected]
26
21
- uses : actions/setup-node@v3
27
22
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
30
25
- name : Install multiple Node versions
31
26
if : runner.os != 'Windows'
32
27
run : |
33
- volta install node@10
34
- echo "NODE_10=$(volta which node)" >> $GITHUB_ENV
35
- echo "NODE_10_VERSION=$(node --version)" >> $GITHUB_ENV
36
28
volta install node@latest
37
29
echo "NODE_LATEST=$(volta which node)" >> $GITHUB_ENV
38
30
echo "NODE_LATEST_VERSION=$(node --version)" >> $GITHUB_ENV
42
34
- name : Install multiple Node versions (Windows)
43
35
if : runner.os == 'Windows'
44
36
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
48
37
volta install node@latest
49
38
echo "NODE_LATEST=$(volta which node)" >> $env:GITHUB_ENV
50
39
echo "NODE_LATEST_VERSION=$(node --version)" >> $env:GITHUB_ENV
@@ -67,14 +56,26 @@ jobs:
67
56
npm init --yes
68
57
npm install eslint@latest
69
58
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
70
65
- 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
71
72
run : |
72
- apm install
73
- apm install linter-eslint
74
- # ./node_modules/.bin/atom-package-deps .
73
+ pulsar --package list --enabled --packages
75
74
76
75
- name : Run tests 👩🏾💻
77
- run : npm run test
76
+ uses : coactions/setup-xvfb@v1
77
+ with :
78
+ run : pulsar --test spec
78
79
79
80
Lint :
80
81
runs-on : ubuntu-latest
@@ -105,7 +106,7 @@ jobs:
105
106
runs-on : ubuntu-latest
106
107
steps :
107
108
- uses : actions/checkout@v3
108
- - uses : UziTech /action-setup-atom @v3
109
+ - uses : pulsar-edit /action-pulsar-dependency @v3.3
109
110
- uses : actions/setup-node@v3
110
111
with :
111
112
node-version : " lts/*"
0 commit comments