Skip to content

Commit

Permalink
should setup
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Feb 7, 2024
1 parent d2380db commit 38af2b0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/deploy_worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,18 @@ jobs:
runs-on: ubuntu-latest
name: Deploy
steps:
- uses: actions/setup-node@v4
- uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn' # This tells the setup-node action to cache Yarn dependencies

- name: Install dependencies
run: yarn install
working-directory: packages/worker # Specifies the directory where the yarn command should be run

- uses: actions/checkout@v3
- name: Deploy
uses: cloudflare/wrangler-action@v3
Expand Down

0 comments on commit 38af2b0

Please sign in to comment.