Skip to content

Commit 2bb2187

Browse files
committed
chore: ci
1 parent 7ca77cb commit 2bb2187

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ on: push
44

55
jobs:
66
build-code:
7-
runs-on: macos-latest
7+
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
1010
uses: actions/checkout@v4
1111
- name: Set up Node
1212
uses: actions/setup-node@v4
1313
with:
1414
node-version: 20
15-
cache: "yarn"
1615
- name: Install
1716
run: yarn --frozen-lockfile
1817
- name: Build

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
analyze:
2525
name: Analyze
26-
runs-on: macos-latest
26+
runs-on: ubuntu-latest
2727
permissions:
2828
actions: read
2929
contents: read

.github/workflows/lint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ on: push
44

55
jobs:
66
lint-code:
7-
runs-on: macos-latest
7+
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
1010
uses: actions/checkout@v4
1111
- name: Set up Node
1212
uses: actions/setup-node@v4
1313
with:
1414
node-version: 20
15-
cache: "yarn"
1615
- name: Install
1716
run: yarn --frozen-lockfile
1817
- name: Lint

.github/workflows/publish.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
publish:
11-
runs-on: macos-latest
11+
runs-on: ubuntu-latest
1212
env:
1313
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1414
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -19,7 +19,6 @@ jobs:
1919
uses: actions/setup-node@v4
2020
with:
2121
node-version: 20
22-
cache: "yarn"
2322
- name: Install
2423
run: yarn --frozen-lockfile
2524
- name: Bundle

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ on: push
44

55
jobs:
66
test-code:
7-
runs-on: macos-latest
7+
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
1010
uses: actions/checkout@v4
1111
- name: Set up Node
1212
uses: actions/setup-node@v4
1313
with:
1414
node-version: 20
15-
cache: "yarn"
1615
- name: Install
1716
run: yarn --frozen-lockfile
1817
- name: Test

0 commit comments

Comments
 (0)