mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-24 10:29:56 +00:00
Compare commits
1 commit
ee254a5bf7
...
e95ca4c44a
Author | SHA1 | Date | |
---|---|---|---|
|
e95ca4c44a |
5 changed files with 312 additions and 635 deletions
8
.github/workflows/example.yml
vendored
8
.github/workflows/example.yml
vendored
|
@ -30,14 +30,14 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
|
||||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: "npm"
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- run: npm run package
|
||||
- uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4
|
||||
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4
|
||||
if: ${{ env.ACT }}
|
||||
with:
|
||||
java-version: 11
|
||||
|
@ -53,14 +53,14 @@ jobs:
|
|||
steps:
|
||||
- uses: easimon/maximize-build-space@fc881a613ad2a34aca9c9624518214ebc21dfc0c # v10
|
||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
|
||||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: "npm"
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- run: npm run package
|
||||
- uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4
|
||||
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4
|
||||
if: ${{ env.ACT}}
|
||||
with:
|
||||
java-version: 11
|
||||
|
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
@ -9,7 +9,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
|
||||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: "npm"
|
||||
|
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
|
||||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: "npm"
|
||||
|
|
917
package-lock.json
generated
917
package-lock.json
generated
File diff suppressed because it is too large
Load diff
18
package.json
18
package.json
|
@ -63,23 +63,23 @@
|
|||
"@ava/typescript": "5.0.0",
|
||||
"@tsconfig/node16": "16.1.3",
|
||||
"@types/async-retry": "1.4.8",
|
||||
"@types/node": "20.16.5",
|
||||
"@types/node": "20.14.1",
|
||||
"@types/semver": "7.5.8",
|
||||
"@typescript-eslint/eslint-plugin": "7.18.0",
|
||||
"@typescript-eslint/parser": "7.18.0",
|
||||
"@typescript-eslint/eslint-plugin": "7.11.0",
|
||||
"@typescript-eslint/parser": "7.11.0",
|
||||
"@vercel/ncc": "0.38.1",
|
||||
"ava": "6.1.3",
|
||||
"c8": "10.1.2",
|
||||
"eslint": "8.57.0",
|
||||
"eslint-config-prettier": "9.1.0",
|
||||
"eslint-plugin-ava": "15.0.1",
|
||||
"eslint-plugin-github": "5.0.2",
|
||||
"eslint-plugin-simple-import-sort": "12.1.1",
|
||||
"husky": "9.1.4",
|
||||
"lint-staged": "15.2.10",
|
||||
"prettier": "3.3.3",
|
||||
"eslint-plugin-github": "5.0.1",
|
||||
"eslint-plugin-simple-import-sort": "12.1.0",
|
||||
"husky": "9.0.11",
|
||||
"lint-staged": "15.2.7",
|
||||
"prettier": "3.3.2",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.5.4"
|
||||
"typescript": "5.4.5"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,ts}": "eslint --cache --fix",
|
||||
|
|
Loading…
Reference in a new issue