Skip to content

Commit 0fa18ad

Browse files
ci: switch to npm instead of yarn
1 parent f628c02 commit 0fa18ad

File tree

8 files changed

+30270
-15776
lines changed

8 files changed

+30270
-15776
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ jobs:
1515
with:
1616
node-version: 'lts/*'
1717

18-
- name: Setup Yarn
19-
run: yarn set version 3.2.0
20-
2118
- name: Cache Bitcoin node
2219
id: bitcoin-cache
2320
uses: actions/cache@v2
@@ -43,27 +40,27 @@ jobs:
4340
id: node-modules-cache
4441
uses: actions/cache@v2
4542
with:
46-
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
43+
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
4744
path: |
4845
node_modules
4946
*/*/node_modules
5047
5148
- name: Install dependencies
5249
if: steps.node-modules-cache.outputs.cache-hit != 'true'
53-
run: yarn install --immutable
50+
run: npm ci
5451

5552
- name: Debug - List Processes
5653
run: ps aux
5754

58-
- run: yarn build
55+
- run: npm run build
5956

6057
- name: Debug - List Processes
6158
run: ps aux
6259

6360
- name: Run tests with detailed output
6461
run: |
6562
echo "::group::Detailed Test Output"
66-
yarn test
63+
npm run test:integration:sequential
6764
echo "::endgroup::"
6865
6966
- name: Get test coverage

0 commit comments

Comments
 (0)