Use sophisticated pre-commit for validation #1246
Workflow file for this run
This file contains hidden or 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: MergeCheck | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2.3.4 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@main | |
| with: | |
| node-version: '15.x' | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: 3.9 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install PyYAML jsonschema | |
| - name: Assemble yml files | |
| run: | | |
| mkdir -p public/conference && cd public/conference | |
| cat `find ../../conference -name '*.yml' -not -path '**/types.yml'` > allconf.yml | |
| cp ../../conference/types.yml . | |
| cd ../.. | |
| - name: Get yarn cache directory path | |
| id: yarn-cache-dir-path | |
| run: echo "::set-output name=dir::$(yarn cache dir)" | |
| - uses: actions/cache@v4 | |
| id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
| with: | |
| path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
| key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-yarn- | |
| - name: Install dependency and build | |
| run: | | |
| yarn config set strict-ssl false | |
| yarn install | |
| yarn build |