Skip to content

Commit

Permalink
Merge pull request #308 from conda-incubator/node20
Browse files Browse the repository at this point in the history
  • Loading branch information
goanpeca authored Nov 22, 2023
2 parents 9f54435 + 8445d3a commit 7d08053
Show file tree
Hide file tree
Showing 6 changed files with 52,241 additions and 11,590 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ jobs:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: |
npm install
npm run check
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ convention, are also checked in.

- Create Conda env with `nodejs`:

We use NodeJS version 16 for now.
We use NodeJS version 20 for now.

```bash
conda create -n github-action nodejs=16 -c conda-forge
conda activate
conda create -n github-action nodejs=20 -c conda-forge
conda activate github-action
```

- Install NodeJS dependencies:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ author: Gonzalo Peña-Castellanos (@goanpeca)
description: "Set up Conda package and environment manager with Miniconda."

runs:
using: "node16"
using: "node20"
main: "dist/setup/index.js"
post: "dist/delete/index.js"
post-if: "success() && env.INPUT_RUN_POST == 'true'"
Expand Down
Loading

0 comments on commit 7d08053

Please sign in to comment.