chore: lint files from reusable workflow, #147 #184
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: Lint Files | |
# This workflow lints the client and server directories | |
# And will trigger on push *any* branch except master and dev | |
on: | |
push: | |
branches-ignore: | |
- master | |
- dev | |
jobs: | |
lint-client: | |
name: Lint Client | |
uses: weaponsforge/reusables/.github/workflows/lint-node.yml@main | |
with: | |
node_version: v16.14.2 | |
path: "./client" | |
lint-server: | |
name: Lint Server | |
uses: weaponsforge/reusables/.github/workflows/lint-node.yml@main | |
with: | |
node_version: v16.14.2 | |
path: "./server" |