Skip to content

Commit 74d970b

Browse files
authored
Merge pull request #27 from atom-community/deps
2 parents f12dd8b + 8d5b3ec commit 74d970b

File tree

4 files changed

+817
-614
lines changed

4 files changed

+817
-614
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,6 @@ defaults:
88
shell: bash
99

1010
jobs:
11-
Test:
12-
if: "!contains(github.event.head_commit.message, '[skip ci]')"
13-
name: ${{ matrix.os }} - Atom ${{ matrix.atom_channel }}
14-
runs-on: ${{ matrix.os }}
15-
strategy:
16-
fail-fast: false
17-
matrix:
18-
os:
19-
- ubuntu-latest
20-
# - macos-latest
21-
# - windows-latest
22-
atom_channel: [stable, beta]
23-
steps:
24-
- uses: actions/checkout@v3
25-
- uses: UziTech/action-setup-atom@v1
26-
with:
27-
channel: ${{ matrix.atom_channel }}
28-
- name: Versions
29-
run: apm -v
30-
- name: Install APM dependencies
31-
run: |
32-
apm install
33-
3411
Lint:
3512
if: "!contains(github.event.head_commit.message, '[skip ci]')"
3613
runs-on: ubuntu-latest
@@ -53,7 +30,7 @@ jobs:
5330
run: npm run test.lint
5431

5532
Release:
56-
needs: [Test]
33+
needs: [Lint]
5734
if: github.ref == 'refs/heads/master' &&
5835
github.event.repository.fork == false
5936
runs-on: ubuntu-latest

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ public-hoist-pattern[]=*
22
package-lock=false
33
lockfile=true
44
prefer-frozen-lockfile=false
5+
strict-peer-dependencies=false

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
},
1919
"dependencies": {
2020
"prettier": "2.7.1",
21-
"prettier-plugin-jsdoc": "^0.3.31",
22-
"prettier-plugin-packagejson": "^2.2.16",
21+
"prettier-plugin-jsdoc": "^0.3.38",
22+
"prettier-plugin-packagejson": "^2.2.18",
2323
"sort-package-json": "github:aminya/sort-package-json"
2424
},
2525
"devDependencies": {
26-
"eslint-config-atomic": "^1.17.1"
26+
"eslint-config-atomic": "^1.18.1"
2727
},
2828
"keywords": [
2929
"prettier",

0 commit comments

Comments
 (0)