diff --git a/.github/workflows/lint-code.yml b/.github/workflows/lint-code.yml new file mode 100644 index 0000000..d4662da --- /dev/null +++ b/.github/workflows/lint-code.yml @@ -0,0 +1,16 @@ +name: Lint Code +on: push +jobs: + lint: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + cache: "npm" + - name: "Install Dependencies" + run: npm ci + - name: "Lint Everything (split this out?)" + run: npm run lint