feat: Custom tree hash input #129
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: Pull Request Check | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
concurrency: | |
group: actions-ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
semantic-title: | |
name: Check PR Title for Semantic Release Type | |
runs-on: ubuntu-22.04 | |
permissions: | |
pull-requests: read | |
steps: | |
- name: Check PR Title | |
uses: amannn/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
validateSingleCommit: true | |
test: | |
name: Check | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'yarn' | |
- run: yarn --frozen-lockfile | |
- run: make test | |
- run: make build | |
- run: make lint | |
- name: Check if built version was committed | |
run: | | |
git diff --exit-code || (echo "::error::You forgot to commit the built actions, run 'make' locally" && exit 1) |