Skip to content

Commit

Permalink
πŸ› CI node error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ThijmenGThN committed Dec 15, 2023
1 parent 2bebce1 commit 3e505d1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ on:
branches: main

jobs:
lint:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: actions/checkout@v2
- run: npm ci
- run: npm run lint
setup:
needs: lint
prepare:
needs: validate
runs-on: self-hosted
steps:
- uses: appleboy/ssh-action@master
Expand All @@ -33,7 +33,7 @@ jobs:
echo '${{ secrets.APP_ENV }}' > .env
deploy:
needs: [lint, setup]
needs: [validate, prepare]
runs-on: self-hosted
steps:
- uses: appleboy/ssh-action@master
Expand Down

0 comments on commit 3e505d1

Please sign in to comment.