diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f920243..80ff7f6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,9 +11,17 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Use Node.js 16.x + uses: actions/setup-node@v2 + with: + node-version: '16' + - name: Install dependencies run: npm install + - name: Fix permissions for executables + run: chmod +x node_modules/.bin/vite + - name: Build project run: npm run build