mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-24 02:19:55 +00:00
Compare commits
13 commits
7026f5d7fb
...
e95ca4c44a
Author | SHA1 | Date | |
---|---|---|---|
|
e95ca4c44a | ||
|
9737171028 | ||
|
2875d04700 | ||
|
e0f3560ee9 | ||
|
00aee325f0 | ||
|
166b118fa2 | ||
|
c164e2b7cd | ||
|
ca959934de | ||
|
ef29f06680 | ||
|
9ccef087d5 | ||
|
e867b18b52 | ||
|
7efdd12908 | ||
|
fb74dcb247 |
5 changed files with 732 additions and 239 deletions
4
.github/workflows/example.yml
vendored
4
.github/workflows/example.yml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
||||||
- false
|
- false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
@ -52,7 +52,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: easimon/maximize-build-space@fc881a613ad2a34aca9c9624518214ebc21dfc0c # v10
|
- uses: easimon/maximize-build-space@fc881a613ad2a34aca9c9624518214ebc21dfc0c # v10
|
||||||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
@ -26,6 +26,6 @@ jobs:
|
||||||
- run: npm run test
|
- run: npm run test
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # v4
|
- uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4
|
||||||
env:
|
env:
|
||||||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
|
945
package-lock.json
generated
945
package-lock.json
generated
File diff suppressed because it is too large
Load diff
16
package.json
16
package.json
|
@ -63,21 +63,21 @@
|
||||||
"@ava/typescript": "5.0.0",
|
"@ava/typescript": "5.0.0",
|
||||||
"@tsconfig/node16": "16.1.3",
|
"@tsconfig/node16": "16.1.3",
|
||||||
"@types/async-retry": "1.4.8",
|
"@types/async-retry": "1.4.8",
|
||||||
"@types/node": "20.12.11",
|
"@types/node": "20.14.1",
|
||||||
"@types/semver": "7.5.8",
|
"@types/semver": "7.5.8",
|
||||||
"@typescript-eslint/eslint-plugin": "7.8.0",
|
"@typescript-eslint/eslint-plugin": "7.11.0",
|
||||||
"@typescript-eslint/parser": "7.8.0",
|
"@typescript-eslint/parser": "7.11.0",
|
||||||
"@vercel/ncc": "0.38.1",
|
"@vercel/ncc": "0.38.1",
|
||||||
"ava": "6.1.3",
|
"ava": "6.1.3",
|
||||||
"c8": "9.1.0",
|
"c8": "10.1.2",
|
||||||
"eslint": "8.57.0",
|
"eslint": "8.57.0",
|
||||||
"eslint-config-prettier": "9.1.0",
|
"eslint-config-prettier": "9.1.0",
|
||||||
"eslint-plugin-ava": "14.0.0",
|
"eslint-plugin-ava": "15.0.1",
|
||||||
"eslint-plugin-github": "4.10.2",
|
"eslint-plugin-github": "5.0.1",
|
||||||
"eslint-plugin-simple-import-sort": "12.1.0",
|
"eslint-plugin-simple-import-sort": "12.1.0",
|
||||||
"husky": "9.0.11",
|
"husky": "9.0.11",
|
||||||
"lint-staged": "15.2.2",
|
"lint-staged": "15.2.7",
|
||||||
"prettier": "3.2.5",
|
"prettier": "3.3.2",
|
||||||
"ts-node": "10.9.2",
|
"ts-node": "10.9.2",
|
||||||
"typescript": "5.4.5"
|
"typescript": "5.4.5"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue