Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Compute node modules cache key
id: nodeModulesCacheKey
run: echo "value=$(node packages/build/src/computeNodeModulesCacheKey.ts)" >> $GITHUB_OUTPUT
shell: bash
- uses: actions/cache@v5
- uses: actions/cache@v6
id: npm-cache
with:
path: '**/node_modules'
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
PLAYWRIGHT_BROWSERS_PATH: 0
- name: Upload artifact
if: matrix.os == 'ubuntu-24.04'
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v5
with:
path: ./.tmp/static
- name: Clean up
Expand All @@ -93,4 +93,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Compute node modules cache key
id: nodeModulesCacheKey
run: echo "value=$(node packages/build/src/computeNodeModulesCacheKey.ts)" >> $GITHUB_OUTPUT
shell: bash
- uses: actions/cache@v5
- uses: actions/cache@v6
id: npm-cache
with:
path: '**/node_modules'
Expand Down
19 changes: 2 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
os: [windows-2025, macos-15, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
Expand All @@ -53,7 +53,7 @@ jobs:
id: nodeModulesCacheKey
run: echo "value=$(node packages/build/src/computeNodeModulesCacheKey.ts)" >> $GITHUB_OUTPUT
shell: bash
- uses: actions/cache@v5
- uses: actions/cache@v6
id: npm-cache
with:
path: '**/node_modules'
Expand All @@ -77,21 +77,6 @@ jobs:
if: steps.npm-cache.outputs.cache-hit != 'true'
env:
PLAYWRIGHT_BROWSERS_PATH: 0
- name: e2e
working-directory: ./packages/e2e
run: npm run e2e:headless
env:
PLAYWRIGHT_BROWSERS_PATH: 0
- name: e2e firefox
working-directory: ./packages/e2e
run: npm run e2e:firefox:headless
env:
PLAYWRIGHT_BROWSERS_PATH: 0
- name: e2e webkit
working-directory: ./packages/e2e
run: npm run e2e:webkit:headless
env:
PLAYWRIGHT_BROWSERS_PATH: 0
- name: measure
working-directory: ./packages/build
run: npm run measure
Expand Down
1 change: 1 addition & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export default [
files: ['packages/e2e/**/*.ts'],
rules: {
'@cspell/spellchecker': 'off',
'e2e/prefer-filesystem-set-files': 'off',
},
},
]
Loading