diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..027598ab --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,21 @@ +name: CI +on: + push: + pull_request: + branches: + - main + paths: + - 'frontend/**' + +jobs: + test: + name: Check the source code + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install packages + run: npm ci + # - name: Prettier + # run: npm run format + - name: Lint + run: npm run lint \ No newline at end of file