From 47d0db2bb8a96c7d97d2951ac63c17e7d6677533 Mon Sep 17 00:00:00 2001 From: Louis Sanna Date: Mon, 27 Nov 2023 21:30:55 +0100 Subject: [PATCH] feat(ci): add github action --- .github/workflows/ci.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..3712671 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,16 @@ +name: Run code quality checks + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '18' + - run: npm install + - run: npm run lint \ No newline at end of file