We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aaf1e7 commit fee858dCopy full SHA for fee858d
.github/workflows/CI.yml
@@ -18,6 +18,13 @@ jobs:
18
atom_channel: [stable, beta]
19
steps:
20
- uses: actions/checkout@v2
21
+ - uses: actions/cache@v2
22
+ env:
23
+ cache-name: node_modules
24
+ with:
25
+ path: node_modules
26
+ key: ${{ runner.os }}-${{ matrix.atom_channel }}-${{ hashFiles('package-lock.json') }}
27
+
28
- uses: UziTech/action-setup-atom@v1
29
with:
30
channel: ${{ matrix.atom_channel }}
@@ -51,7 +58,7 @@ jobs:
51
58
node-version: "12.x"
52
59
- name: Install NPM dependencies
53
60
run: |
54
- npm install
61
+ npm install --only=dev --ignore-scripts
55
62
- name: Lint ✨
56
63
run: npm run lint
57
64
0 commit comments