Skip to content

Commit

Permalink
Update CI and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Apr 24, 2022
1 parent 5602768 commit 551e4c8
Show file tree
Hide file tree
Showing 3 changed files with 250 additions and 273 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
name: Test
on:
push:
branches:
- main
pull_request:
jobs:
full:
name: Node.js 17 Full
name: Node.js Latest Full
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 17
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
Expand All @@ -35,13 +37,13 @@ jobs:
name: Node.js ${{ matrix.node-version }} Quick
steps:
- name: Checkout the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@
"postcss": "^8.2.14"
},
"dependencies": {
"postcss-selector-parser": "^6.0.8"
"postcss-selector-parser": "^6.0.10"
},
"devDependencies": {
"@logux/eslint-config": "^46.1.1",
"c8": "^7.11.0",
"clean-publish": "^3.4.5",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"@logux/eslint-config": "^47.2.0",
"c8": "^7.11.2",
"clean-publish": "^4.0.0",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.0.0",
"postcss": "^8.4.5",
"postcss": "^8.4.12",
"uvu": "^0.5.3"
},
"prettier": {
Expand Down
Loading

0 comments on commit 551e4c8

Please sign in to comment.