Skip to content

Commit 3af08c4

Browse files
committed
use normal install to actually run on CI
1 parent 8e426cd commit 3af08c4

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

.azure-pipelines-steps.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,13 @@ steps:
1919
displayName: 'Use Python 2.7'
2020

2121
# Run yarn to install dependencies and build
22-
- script: node scripts/remove-postinstall
23-
displayName: 'Remove postinstall script'
24-
2522
- task: CacheBeta@0
2623
inputs:
2724
key: yarn | $(Agent.OS) | yarn.lock
2825
path: $(YARN_CACHE_FOLDER)
2926
displayName: Cache Yarn packages
3027

31-
- script: yarn install-no-ts-build
28+
- script: yarn install
3229
displayName: 'Install dependencies'
3330

3431
# Run test-ci-partial

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ aliases:
1414
- &filter-ignore-gh-pages
1515
branches:
1616
ignore: gh-pages
17-
- &install yarn install-no-ts-build
17+
- &install yarn
1818

1919
version: 2
2020
jobs:

.github/workflows/nodejs.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ jobs:
3636
with:
3737
node-version: 12.x
3838
- name: install
39-
run: yarn install-no-ts-build
40-
- name: build
41-
run: node scripts/build.js
39+
run: yarn install
4240
- name: run tsc
4341
run: yarn build:ts
4442
- name: verify [email protected] compatibility
@@ -80,7 +78,7 @@ jobs:
8078
with:
8179
node-version: ${{ matrix.node-version }}
8280
- name: install
83-
run: yarn install-no-ts-build
81+
run: yarn install
8482
- name: run tests
8583
run: yarn test-ci-partial
8684
env:

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ before_install:
1111
- curl -o- -L https://yarnpkg.com/install.sh | bash
1212
- export PATH="$HOME/.yarn/bin:$PATH"
1313

14-
install: yarn install-no-ts-build
14+
install: yarn install
1515

1616
cache:
1717
yarn: true

0 commit comments

Comments
 (0)