diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..3664cdc --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,19 @@ +name: Node.js CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '20.8.0' + - run: npm install . + working-directory: app + - run: npm run lint + working-directory: app