Skip to content

remove prettier

remove prettier #3

Workflow file for this run

name: Deploy
on:
pull_request:
types:
- closed
branches:
- production
workflow_dispatch:
jobs:
tests:
name: Tests
uses: ./.github/workflows/tests.yml
build:
name: Build
needs: [ tests ]
uses: ./.github/workflows/build.yml
deploy:
name: Deploy
if: github.event.pull_request.merged == true
needs: [ build ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: dist
path: dist
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist