Skip to content

Commit

Permalink
chore: 🤖 updates (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
Loonz806 authored Oct 5, 2023
1 parent 04afe6e commit 10a7cbb
Show file tree
Hide file tree
Showing 8 changed files with 14,767 additions and 28,835 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/githubactions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
needs: [build]
steps:
- uses: actions/checkout@v3
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
needs: [build]
steps:
- uses: actions/checkout@v3
Expand All @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
needs: [build]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -122,14 +122,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
needs: [build]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm install && npm install -g @lhci/cli@0.7.x
node-version: 18.x
- run: npm install && npm install -g @lhci/cli@0.12.x
- run: npm run build
- run: lhci autorun
env:
Expand All @@ -138,7 +138,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
needs: [lint, test, e2e_visual_a11y, lighthouseci, sonarcloud]
steps:
- name: Checkout 🛎️
Expand Down
8 changes: 4 additions & 4 deletions cypress/e2e/setup-example.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe("the setup-example page", () => {
"log",
`${violations.length} accessibility violation${
violations.length === 1 ? "" : "s"
} ${violations.length === 1 ? "was" : "were"} detected`
} ${violations.length === 1 ? "was" : "were"} detected`,
);
// pluck specific keys to keep the table readable
const violationData = violations.map(
Expand All @@ -16,7 +16,7 @@ describe("the setup-example page", () => {
impact,
description,
nodes: nodes.length,
})
}),
);

cy.task("table", violationData);
Expand All @@ -34,7 +34,7 @@ describe("the setup-example page", () => {
{
includedImpacts: ["critical"],
},
terminalLog
terminalLog,
);
});

Expand All @@ -50,7 +50,7 @@ describe("the setup-example page", () => {
{
includedImpacts: ["critical"],
},
terminalLog
terminalLog,
);
});

Expand Down
Loading

0 comments on commit 10a7cbb

Please sign in to comment.