Skip to content

Commit

Permalink
Update deps and CI settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Apr 29, 2022
1 parent ce47e7a commit 147046f
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 60 deletions.
24 changes: 10 additions & 14 deletions .github/workflows/nodejs.yml
Expand Up @@ -11,22 +11,18 @@ on:

jobs:
lint:
name: Lint on Node.js ${{ matrix.node }} and ${{ matrix.os }}
name: Lint

runs-on: ${{ matrix.os }}

strategy:
matrix:
node: [14]
os: [ubuntu-latest]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
node-version: 'lts/*'
cache: npm

- name: Install latest npm
run: npm install --global npm@latest
Expand All @@ -45,13 +41,13 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [12, 14, 16]
node: [12, 14, 16, 18]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

Expand Down
84 changes: 42 additions & 42 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -56,17 +56,17 @@
"@stylelint/prettier-config": "^2.0.0",
"@stylelint/remark-preset": "^3.0.0",
"@types/jest": "^27.4.1",
"eslint": "^8.13.0",
"eslint": "^8.14.0",
"eslint-config-stylelint": "^15.0.0",
"husky": "^7.0.4",
"jest": "^28.0.2",
"lint-staged": "^12.3.8",
"lint-staged": "^12.4.1",
"np": "^7.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"remark-cli": "^10.0.1",
"stylelint": "^14.7.0",
"typescript": "^4.6.3"
"stylelint": "^14.8.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"jest": "^25.3.0 || ^26.0.1 || ^27.0.1 || ^28.0.2"
Expand Down

0 comments on commit 147046f

Please sign in to comment.