Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try bulidjet #474

Merged
merged 4 commits into from
Jan 3, 2024
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
4 changes: 2 additions & 2 deletions .github/actions/yarn-nm-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
# This will skip the install step if the cache is hit.
- name: Restore node_modules
id: yarn-node-modules-cache
uses: actions/cache@v3
uses: buildjet/cache@v3
with:
path: |
**/node_modules
Expand All @@ -32,7 +32,7 @@ runs:
# Thanks to https://github.com/rafaelbiten for this step https://github.com/microsoft/playwright/issues/7249#issuecomment-1385567519
- name: Cache Playwright Browsers for Playwright's Version
id: cache-playwright-browsers
uses: actions/cache@v3
uses: buildjet/cache@v3
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('yarn.lock') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
Build:
runs-on: ubuntu-latest
runs-on: buildjet-8vcpu-ubuntu-2204

strategy:
matrix:
Expand All @@ -24,7 +24,7 @@ jobs:

- run: yarn cli build
Lint:
runs-on: ubuntu-latest
runs-on: buildjet-8vcpu-ubuntu-2204

strategy:
matrix:
Expand All @@ -43,7 +43,7 @@ jobs:
yarn lint:all --max-warnings 0

Test:
runs-on: ubuntu-latest
runs-on: buildjet-8vcpu-ubuntu-2204

strategy:
matrix:
Expand All @@ -63,7 +63,7 @@ jobs:
# skip this until the new API is ready
if: false
name: Visual regression tests
runs-on: ubuntu-latest
runs-on: buildjet-8vcpu-ubuntu-2204

strategy:
matrix:
Expand All @@ -83,7 +83,7 @@ jobs:
Compatibility-Tests:
# skip this until the new API is ready
if: false
runs-on: ubuntu-latest
runs-on: buildjet-8vcpu-ubuntu-2204

strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-insiders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if:
${{ github.event.issue.pull_request && contains(github.event.comment.body,
'/release insiders') }}
runs-on: ubuntu-latest
runs-on: buildjet-8vcpu-ubuntu-2204

permissions:
issues: write
Expand Down