Skip to content

Commit d7e8132

Browse files
committed
fix: virtual-core dependencies
RELEASE_ALL
1 parent 124d216 commit d7e8132

File tree

13 files changed

+37109
-154969
lines changed

13 files changed

+37109
-154969
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,24 @@ concurrency:
55
on: [push]
66
jobs:
77
test-and-publish:
8-
name: "Test & Publish"
8+
name: 'Test & Publish'
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
1212
with:
13-
fetch-depth: "0"
13+
fetch-depth: '0'
1414
- uses: actions/setup-node@v2
1515
with:
1616
node-version: 16
1717
registry-url: https://registry.npmjs.org/
18-
cache: "yarn"
18+
cache: 'npm'
1919
- run: |
20-
yarn install --frozen-lockfile
20+
npm i
2121
git config --global user.name 'Tanner Linsley'
2222
git config --global user.email 'tannerlinsley@users.noreply.github.com'
23-
yarn cipublish
23+
npm run cipublish
2424
env:
2525
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2626
GH_TOKEN: ${{ secrets.GH_TOKEN }}
27-
YARN_REGISTRY: https://registry.npmjs.org/
2827
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2928
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: pr
22
on: [pull_request]
33
jobs:
44
test:
5-
name: "Test (node ${{ matrix.node }})"
5+
name: 'Test (node ${{ matrix.node }})'
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
@@ -13,6 +13,6 @@ jobs:
1313
with:
1414
node-version: ${{ matrix.node }}
1515
- run: |
16-
yarn install --frozen-lockfile
17-
yarn build
18-
yarn test
16+
npm i
17+
npm run build
18+
npm run test

0 commit comments

Comments
 (0)