Skip to content

Commit

Permalink
more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
asturur committed Dec 3, 2024
1 parent 6719d60 commit 684ff12
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Uglified build
uses: actions/checkout@v4
Expand All @@ -17,7 +17,7 @@ jobs:
- run: npm run build
stats:
name: Build stats
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
minified: dist/index.min.js
bundled: dist/index.mjs
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
b: JSON.parse('${{ steps.b.outputs.result }}'),
});
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Linting
uses: actions/checkout@v4
Expand All @@ -78,7 +78,7 @@ jobs:
node-version: 20.x
- run: npm run lint
prettier:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Prettier check
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
changelog:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
file: CHANGELOG.md
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
exit 1
fi
update:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: changelog
if: (inputs.create && failure()) || (inputs.update && success())
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npmpublish-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
publish-npm:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
publish-npm:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -23,7 +23,7 @@ jobs:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
PRE_RELEASE: ${{github.event.release.prerelease}}
update-bug-report:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
# wait for publishing to complete
needs: publish-npm
if: always()
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
prime-build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies
Expand All @@ -21,8 +21,8 @@ jobs:
uses: ./.github/actions/build-fabric-cached
node-coverage:
needs: [prime-build]
runs-on: ubuntu-latest
name: Node 18.x ${{ matrix.suite }} tests
runs-on: ubuntu-24.04
name: Node 20.x ${{ matrix.suite }} tests
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
browser:
needs: [prime-build]
name: ${{ matrix.target }} ${{ matrix.suite }} tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [20]
Expand All @@ -72,7 +72,7 @@ jobs:
run: xvfb-run npm run test -- -c ${{ matrix.target }} -s ${{ matrix.suite }}
node:
needs: [prime-build]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: Node ${{ matrix.node-version }} ${{ matrix.suite }} tests
strategy:
fail-fast: false
Expand All @@ -94,7 +94,7 @@ jobs:
run: npm run test -- -c node -s ${{ matrix.suite }}
jest:
name: Jest tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/cached-install
Expand All @@ -112,7 +112,7 @@ jobs:
e2e:
needs: [prime-build]
name: Playwright tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/cached-install
Expand All @@ -139,7 +139,7 @@ jobs:
coverage:
needs: [node-coverage, e2e]
name: Coverage reporting
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/cached-install
Expand Down

0 comments on commit 684ff12

Please sign in to comment.