Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

chore(deps): update dependency cypress to v12.17.4 (#619) #537

chore(deps): update dependency cypress to v12.17.4 (#619)

chore(deps): update dependency cypress to v12.17.4 (#619) #537

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- uses: actions/cache@v3
id: yarn-and-build-cache
with:
path: |
build
node_modules
key: ${{ runner.os }}-node_modules-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node_modules-build-
- name: Install dependencies
run: yarn install --ignore-engines
- name: Build
run: yarn run build --configuration production --base-href /awesome-hangman/
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist/awesome-hangman