Add excludes to validate task #2
Workflow file for this run
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: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install devbox | |
uses: jetpack-io/[email protected] | |
- name: Test devbox | |
run: devbox run -- echo "done!" | |
- name: Build | |
run: devbox run build | |
- name: Generate | |
run: devbox run generate | |
- name: Validate | |
# TODO(kakkoyun): Remove the exlusion of out directory once we have reproducible builds. | |
run: git diff --exit-code ':!out/' |