fix: agreement #70
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
# name: Deploy Next App | |
# on: | |
# push: | |
# branches: | |
# - 'master' | |
# paths-ignore: | |
# - '.github/workflows/*' | |
# jobs: | |
# deploy: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Get repository code | |
# uses: actions/checkout@v3 | |
# - name: Install dependencies | |
# run: yarn install | |
# - name: Run application eslint | |
# run: yarn eslint | |
# - name: Build application | |
# run: yarn build | |
# - name: Deploy | |
# run: echo Deployment... |