Skip to content

Commit

Permalink
Upgrade packages & improve tests (#71)
Browse files Browse the repository at this point in the history
* Upgrade packages

* Set up playwright snapshots and update build versions

* Fix remaining package vulnerabilities

* Regenerate package lock file

* Set a max pixel ratio difference to allow for slight variances in browser rendering

* Ensure latest vue packages are used, should be ok since we're static site rendered

* Fix bug with experience navigation

* Set up tests for internal links on homepage
  • Loading branch information
tajdeluca authored Dec 18, 2024
1 parent 122d93d commit 6e4ef11
Show file tree
Hide file tree
Showing 77 changed files with 5,562 additions and 5,436 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
uses: ./.github/workflows/build.yml
with:
artifact_name: 'build'
node_version: '20.x'
node_version: '22.x'
runner: 'ubuntu-latest'
test:
name: 'Test'
needs: build
uses: ./.github/workflows/test.yml
with:
build_artifact_name: 'build'
node_version: '20.x'
node_version: '22.x'
runner: 'ubuntu-latest'
test_base_url: 'http://localhost:3000'
test_is_against_deployment: false
Expand All @@ -46,7 +46,7 @@ jobs:
uses: ./.github/workflows/test.yml
with:
build_artifact_name: 'build'
node_version: '20.x'
node_version: '22.x'
runner: 'ubuntu-latest'
test_base_url: 'https://beta.tajdeluca.com'
test_is_against_deployment: true
Expand All @@ -73,7 +73,7 @@ jobs:
uses: ./.github/workflows/test.yml
with:
build_artifact_name: 'build'
node_version: '20.x'
node_version: '22.x'
runner: 'ubuntu-latest'
test_base_url: 'https://tajdeluca.com'
test_is_against_deployment: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
uses: ./.github/workflows/build.yml
with:
artifact_name: 'build'
node_version: '20.x'
node_version: '22.x'
runner: 'ubuntu-latest'
test:
name: 'Test'
needs: build
uses: ./.github/workflows/test.yml
with:
build_artifact_name: 'build'
node_version: '20.x'
node_version: '22.x'
runner: 'ubuntu-latest'
test_base_url: 'http://localhost:3000'
test_is_against_deployment: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
test:
runs-on: ${{ inputs.runner }}
container: 'mcr.microsoft.com/playwright:v1.40.1-focal'
container: 'mcr.microsoft.com/playwright:v1.49.1-noble'
steps:
# Checkout
- uses: actions/checkout@v4
Expand Down
Loading

0 comments on commit 6e4ef11

Please sign in to comment.