Try building with ubuntu again and without memory safeguards
Luke Karrys committed
Oct 20, 2023 at 10:14 UTC
eca2fe6f5fda02faf1459a3bceed29383e968e2b
4 files changed
+5
-6
.github/workflows/publish.yml
+1
-1
@@ -18,7 +18,7 @@ jobs:
18
pages: read
19
name: Build and Upload
20
if: github.repository_owner == 'npm'
21
- runs-on: macos-latest
21
+ runs-on: ubuntu-latest
22
defaults:
23
run:
24
shell: bash
content/organizations/index.mdx
+1
-1
@@ -5,6 +5,6 @@ redirect_from:
5
- /orgs
6
---
7
8
-<>Organizations allow teams of contributors to read and write public and private packages. Organizations are free when they publish public packages. When organizations publish private packages, an npm Teams subscription is required. For more information on npm Teams pricing, see our <Link href="https://www.npmjs.com/pricing">products page</Link>.</>
8
+<>Organizations allow teams of contributors to read and write public and private packages. Organizations are free when they publish public packages. When organizations publish private packages, an npm Teams subscription is required. For more information on npm Teams pricing, see our [products page](https://www.npmjs.com/pricing).</>
9
10
<Index />
package.json
+2
-3
@@ -7,9 +7,8 @@
7
},
8
"private": true,
9
"scripts": {
10
- "develop": "NODE_OPTIONS=--max-old-space-size=8192 gatsby develop --verbose",
11
- "develop:debug": "GATSBY_WEBPACK_LOGGING=develop npm run develop",
12
- "build": "NODE_OPTIONS=--max-old-space-size=8192 gatsby build --verbose --log-pages",
10
+ "develop": "gatsby develop",
11
+ "build": "gatsby build --verbose --log-pages",
12
"clean": "gatsby clean",
13
"serve": "gatsby serve",
14
"lint": "eslint \"**/*.js\"",
scripts/template-oss/publish.yml
+1
-1
@@ -17,7 +17,7 @@ jobs:
17
pages: read
18
name: Build and Upload
19
if: github.repository_owner == 'npm'
20
- runs-on: macos-latest
20
+ runs-on: ubuntu-latest
21
defaults:
22
run:
23
shell: bash