From ec77939f6520ff4be133e4234a0e245b050f5bd5 Mon Sep 17 00:00:00 2001 From: Jelle Date: Wed, 29 May 2024 09:35:10 +0200 Subject: [PATCH] Add lint & build workflow --- .github/workflows/lint.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..25f2b83e --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,16 @@ +name: Lint & Build + +on: [pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + cache: 'yarn' + - run: yarn install --frozen-lockfile + - run: yarn lint + - run: yarn build \ No newline at end of file