Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm i -g npm@7
- run: npm ci
Expand All @@ -48,12 +48,12 @@ jobs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version-file: '.nvmrc'
cache: 'npm'
- uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -88,10 +88,10 @@ jobs:
nodeCount: [2]
nodeIndex: [0, 1]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version-file: '.nvmrc'
cache: 'npm'
- uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
lint-integrations-buildkite:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: 'docker://buildkite/plugin-linter'
with:
args: --id check-run-reporter/check-run-reporter --path /github/workspace/integrations/check-run-reporter-buildkite-plugin
Expand All @@ -132,7 +132,7 @@ jobs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/download-artifact@v2
Expand All @@ -154,10 +154,10 @@ jobs:
- test-integrations-buildkite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm i -g npm@7
- run: npm ci
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16.13.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"engines": {
"node": ">=14",
"node": ">=16",
"npm": ">=7"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"outDir": "dist/types",
"resolveJsonModule": true,
"strict": true,
"target": "es2020", // node 14
"target": "es2021", // node 16
"types": [
"jest",
"node"
Expand Down