evanharmon1 is running Validate Actions #27
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: Validate Code | |
run-name: ${{ github.actor }} is running Validate Actions | |
on: [pull_request] | |
jobs: | |
preCommit: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Triggered by a ${{ github.event_name }} event." | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- uses: pre-commit/[email protected] | |
- uses: pre-commit-ci/[email protected] | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 22 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: npm | |
- run: npm ci | |
- run: npm run check |