Skip to content

Commit

Permalink
modify code in circleci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nil2022 committed Jan 11, 2024
1 parent b23a1a8 commit 860d6c2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,23 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
- checkout
- run:
# Check Node version
name: "Check Node.js version"
command: "node --version"

- name: Use Node.js
uses: actions/setup-node@v4

- name: Check Node.js version
run: |
node --version
workflows:
check-node-version-workflow:
jobs:
- check-node-version
# # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
# # See: https://circleci.com/docs/configuration-reference/#executor-job
# docker:
Expand Down

0 comments on commit 860d6c2

Please sign in to comment.