Merge branch 'epic/v3' into epic/v3--run-only-commit-source-action-if… #5
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
# Do not let built-in-place files be comitted to `main` branch | |
name: Lint | |
on: [push] | |
# on: | |
# push: | |
# branches: | |
# - main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint (Directories) | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- run: npm run lint:dirs |