Skip to content

Commit 98ac22f

Browse files
committed
disable node 0.10 tests
1 parent c61afc5 commit 98ac22f

File tree

1 file changed

+1
-76
lines changed

1 file changed

+1
-76
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- '6'
2929
- '4'
3030
- '0.12'
31-
- '0.10'
31+
# - '0.10'
3232
steps:
3333
# checkout code
3434
- uses: actions/checkout@v2
@@ -49,80 +49,5 @@ jobs:
4949
# restore-keys: npm-cache-${{ matrix.os }} ${{ matrix.node }}-
5050
- run: npm install
5151

52-
# # install version to test against
53-
# - name: Use Node.js ${{ matrix.node }}
54-
# uses: actions/setup-node@v1
55-
# with:
56-
# node-version: ${{ matrix.node }}
57-
5852
# Run tests
5953
- run: npm test
60-
61-
# test:
62-
# needs: build
63-
# name: "Test: ${{ matrix.os }}, node ${{ matrix.node }}"
64-
# runs-on: ${{ matrix.os }}-latest
65-
# strategy:
66-
# fail-fast: false
67-
# matrix:
68-
# os: [ubuntu, windows]
69-
# node:
70-
# - 16
71-
# - 14
72-
# - 12
73-
# - 10
74-
# - 9
75-
# - '8'
76-
# - '7'
77-
# - '6'
78-
# - '4'
79-
# - '0.12'
80-
# - '0.10'
81-
# steps:
82-
# # checkout code
83-
# - uses: actions/checkout@v2
84-
# # install node
85-
# - name: Use Node.js ${{ matrix.node }}
86-
# uses: actions/setup-node@v1
87-
# with:
88-
# node-version: ${{ matrix.node }}
89-
# # lint, build, test
90-
# # Downgrade from npm 7 to 6 because 7 still seems buggy to me
91-
# - if: ${{ matrix.downgradeNpm }}
92-
# run: npm install -g npm@6
93-
# - run: |
94-
# npm config set cache "$( node -p "process.cwd()" )/temp/npm-cache"
95-
# - name: Cache dependencies
96-
# uses: actions/cache@v2
97-
# with:
98-
# path: temp/npm-cache
99-
# key: npm-cache-${{ matrix.os }}-${{ hashFiles('package-lock.json') }}
100-
# restore-keys: npm-cache-${{matrix.os }}-
101-
# - run: npm ci --ignore-scripts
102-
# - name: Upload npm logs
103-
# if: ${{ failure() }}
104-
# uses: actions/upload-artifact@v1
105-
# with:
106-
# name: npm-logs
107-
# path: temp/npm-cache/_logs
108-
# - run: npm run build-tsc
109-
# - name: Download package artifact
110-
# uses: actions/download-artifact@v1
111-
# with:
112-
# name: ts-node-packed.tgz
113-
# path: tests/
114-
# - run: npm install typescript@${{ matrix.typescript }} --force
115-
# - run: npm run test-cov
116-
# - name: Upload npm logs
117-
# if: ${{ failure() }}
118-
# uses: actions/upload-artifact@v1
119-
# with:
120-
# name: npm-logs-${{ matrix.os }}-node-${{ matrix.nodeFlag }}-typescript-${{ matrix.typescriptFlag }}
121-
# path: temp/npm-cache/_logs
122-
# - run: npm run coverage-report
123-
# if: ${{ always() }}
124-
# - name: Codecov
125-
# if: ${{ always() }}
126-
# uses: codecov/codecov-action@v1
127-
# with:
128-
# flags: ${{ matrix.os }},node_${{ matrix.nodeFlag }},typescript_${{ matrix.typescriptFlag }}

0 commit comments

Comments
 (0)