fix: add graasp config for renovate #20
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: Build | |
on: | |
push: | |
jobs: | |
build-site: | |
name: Build Site | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Yarn install and Cache dependencies | |
uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1 | |
- name: Yarn lint | |
run: yarn lint && yarn prettier --check | |
shell: bash | |
- name: Yarn build | |
# Set environment variables required to perform the build. These are only available to this step | |
run: yarn build | |
shell: bash |