Skip to content

Commit

Permalink
chore: Update pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
tatibouet committed Mar 16, 2023
1 parent c62ead1 commit b9fdf85
Show file tree
Hide file tree
Showing 5 changed files with 945 additions and 822 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16]
node-version: [18]
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.1
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.4
with:
version: latest
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -34,15 +34,15 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [12, 14, 16]
node-version: [16, 18]
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.1
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.4
with:
version: latest
- name: Use 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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16]
node-version: [18]
os: [ubuntu-latest]
steps:
- name: Checkout the full history
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2.2.1
- uses: pnpm/action-setup@v2.2.4
with:
version: latest
- name: Use 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
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const propertiesOrder = require("./properties-order");
module.exports = {
extends: ["stylelint-config-recommended"],
plugins: [
"stylelint-a11y",
"@ronilaukkarinen/stylelint-a11y",
"stylelint-no-unsupported-browser-features",
"stylelint-order",
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"homepage": "https://github.com/charlestati/stylelint-config-neat#readme",
"dependencies": {
"stylelint-a11y": "1.2.3",
"@ronilaukkarinen/stylelint-a11y": "1.2.7",
"stylelint-config-recommended": "11.0.0",
"stylelint-config-recommended-scss": "9.0.1",
"stylelint-no-unsupported-browser-features": "6.1.0",
Expand Down

0 comments on commit b9fdf85

Please sign in to comment.