diff --git a/.github/workflows/check-code-on-pr-to-main.yml b/.github/workflows/check-code-on-pr-to-main.yml new file mode 100644 index 0000000..c9f0a03 --- /dev/null +++ b/.github/workflows/check-code-on-pr-to-main.yml @@ -0,0 +1,29 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Check Code + +on: + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Node Setup + uses: actions/setup-node@v3 + with: + node-version: '20' + + - name: Install dependencies + run: npm install + + - name: Lint + run: npm run lint + + - name: Build + run: npm run build