chore(deps): update dependency lint-staged to v13.3.0 #665
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################## | |
# FILE GENERATED AUTOMATICALLY FROM TERRAFORM | |
# THIS FILE SHOULD NOT BE EDITED BY HAND | |
############################################## | |
name: Build and Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
env: | |
HUSKY_SKIP_HOOKS: 1 | |
HUSKY: 0 | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3.6.0 | |
- name: Setup node ⚙️ | |
uses: actions/setup-node@v3.8.1 | |
- name: Install ⚙️️ | |
run: npm ci | |
- name: Build 🔧 | |
run: npm run build | |
- name: Deploy 🚀 | |
uses: peaceiris/actions-gh-pages@v3.9.3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: . | |
user_name: "github-actions[bot]" | |
user_email: "github-actions[bot]@users.noreply.github.com" | |
keep_files: true | |
exclude_assets: ".github,node_modules,.gitignore,git" |