Skip to content

Commit 361fe17

Browse files
committed
Attempt to get publish to work by removing yarn references
1 parent c22be55 commit 361fe17

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/deploy-gh-pages.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
- uses: actions/setup-node@v2
2222
with:
2323
node-version: '12'
24-
cache: 'yarn'
25-
- run: yarn install
26-
- run: yarn docs
24+
cache: 'npm'
25+
- run: npm install
26+
- run: npm run docs
2727

2828
- run: touch docs/.nojekyll
2929
- name: Deploy docs 🚀

.github/workflows/lint-and-test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version: ${{ matrix.nodejs }}
2020

21-
- run: yarn install
22-
- run: yarn test
23-
- run: yarn lint
24-
- run: yarn build-all
21+
- run: npm install
22+
- run: npm run test
23+
- run: npm run lint
24+
- run: npm run build-all

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"ts-node": "ts-node",
2626
"docs": "typedoc --entryPoints src/main.ts",
2727
"build": "tsc -p tsconfig.json",
28-
"build-all": "yarn clean && yarn build"
28+
"build-all": "npm run clean && npm run build"
2929
},
3030
"devDependencies": {
3131
"@types/jest": "^27.4.0",

0 commit comments

Comments
 (0)