Skip to content

Commit 05914f9

Browse files
authoredFeb 20, 2025··
feat(ci): update turbo, add caching (#1460)
1 parent f9f7901 commit 05914f9

File tree

5 files changed

+61
-121
lines changed

5 files changed

+61
-121
lines changed
 

‎.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.github/workflows/ @morgsmccauley @andy-haynes
1+
.github/workflows/ @morgsmccauley @andy-haynes @r-near @frol

‎.github/workflows/pull-request.yml

+14-5
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,26 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
19+
20+
21+
- name: Cache turbo build setup
22+
uses: actions/cache@v4
23+
with:
24+
path: .turbo
25+
key: ${{ runner.os }}-turbo-${{ github.sha }}
26+
restore-keys: |
27+
${{ runner.os }}-turbo-
1928
2029
- name: Setup pnpm
21-
uses: pnpm/action-setup@v4.0.0
30+
uses: pnpm/action-setup@v4
2231
with:
23-
version: 9.4.0
32+
version: 10.4.1
2433

2534
- name: Setup Node
26-
uses: actions/setup-node@v3
35+
uses: actions/setup-node@v4
2736
with:
28-
node-version: 20.15.0
37+
node-version: 20.18.3
2938
cache: pnpm
3039

3140
- name: Install dependencies

‎package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
"name": "@near-js/monorepo",
33
"private": true,
44
"engines": {
5-
"node": ">=20.15.0",
6-
"pnpm": ">=9.4.0"
5+
"node": ">=20.18.3",
6+
"pnpm": ">=10.4.1"
77
},
8+
"packageManager": "pnpm@10.4.1",
89
"scripts": {
910
"preinstall": "npx only-allow pnpm",
1011
"build": "turbo run build",
@@ -28,9 +29,9 @@
2829
"eslint": "8.20.0",
2930
"husky": "7.0.4",
3031
"rimraf": "6.0.1",
31-
"turbo": "1.4.5",
32-
"typedoc": "0.27.7",
3332
"tsconfig": "workspace:*",
33+
"turbo": "2.4.2",
34+
"typedoc": "0.27.7",
3435
"typescript": "5.4.5"
3536
},
3637
"resolutions": {

‎pnpm-lock.yaml

+33-105
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎turbo.json

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
{
22
"$schema": "https://turborepo.org/schema.json",
3-
"pipeline": {
3+
"tasks": {
44
"build": {
55
"dependsOn": ["^build"],
6-
"inputs": ["src/**/*.ts", "test/**/*.js", "tsconfig.json"],
76
"outputs": ["dist/**", "lib/**"]
87
},
98
"test": {
10-
"dependsOn": [],
11-
"inputs": ["src/**/*.ts", "test/**/*.js"]
9+
"dependsOn": ["^transit"],
10+
"outputs": []
1211
},
1312
"lint": {
14-
"inputs": ["src/**/*.ts", "test/**/*.ts"],
13+
"dependsOn": ["^transit"],
1514
"outputs": []
1615
},
1716
"lint:fix": {
18-
"inputs": ["src/**/*.ts", "test/**/*.ts"],
17+
"dependsOn": ["^transit"],
1918
"outputs": []
2019
},
20+
"transit": {
21+
"dependsOn": ["^transit"]
22+
},
2123
"clean": {
2224
"outputs": [],
2325
"cache": false

0 commit comments

Comments
 (0)
Please sign in to comment.