Skip to content

Commit

Permalink
Merge pull request #110 from lifeiscontent/chore/fix-ci
Browse files Browse the repository at this point in the history
chore: fix ci
  • Loading branch information
lifeiscontent committed Mar 31, 2024
2 parents dfc39fa + 3dd723e commit 4e6f57a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2,397 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
ref: ${{ github.event.release.target_commitish }}
- uses: actions/setup-node@v1
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
node-version: 20.x
registry-url: https://registry.npmjs.org
- run: npm ci
- run: git config --global user.name "GitHub CD bot"
- run: git config --global user.email "github-cd-bot@example.com"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
- run: npm ci
- run: npm run build
- run: npm run lint
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 18.16.0
nodejs 20.12.0
Loading

0 comments on commit 4e6f57a

Please sign in to comment.