Skip to content

Commit

Permalink
Tweaked build action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
davidn0rman committed Feb 15, 2024
1 parent cdf179b commit f78a015
Show file tree
Hide file tree
Showing 3 changed files with 1,801 additions and 4,587 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
CI: true

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v2.0.1
- uses: pnpm/action-setup@v3
with:
version: 6
version: 8

- name: Cache pnpm modules
uses: actions/cache@v2
Expand All @@ -24,7 +24,7 @@ jobs:
${{ runner.os }}-
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 21.x

Expand All @@ -46,10 +46,10 @@ jobs:
pnpm run lint
- name: Cypress (UI + Axe)
uses: cypress-io/github-action@v4
uses: cypress-io/github-action@v6
with:
start: pnpm start
wait-on: "http://localhost:3000"
wait-on: "http://localhost:4321"
wait-on-timeout: 180
# command-prefix: "percy exec --"
install: false
Expand Down
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default defineConfig({
setupNodeEvents(on, config) {
return require("./cypress/plugins/index.js")(on, config);
},
baseUrl: "http://localhost:3000",
baseUrl: "http://localhost:4321",
},
});
Loading

0 comments on commit f78a015

Please sign in to comment.