diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a75306e..a969918 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,7 +3,7 @@ name: Deploy to Netlify on: push: branches: - - main + - main # or the branch you want to deploy from jobs: build: @@ -16,7 +16,10 @@ jobs: - name: Install Node.js uses: actions/setup-node@v2 with: - node-version: '14' + node-version: '18' + + - name: Install Yarn + run: npm install -g yarn - name: Install dependencies run: yarn install