From 65fb49bf59ef1c5c73e9fdfaace9d9b7f8afa601 Mon Sep 17 00:00:00 2001 From: eMerzh Date: Mon, 11 Mar 2024 15:34:16 +0100 Subject: [PATCH] chore: add ci --- .github/workflows/check.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/check.yml diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000..7f882f1 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,19 @@ +name: Check + +on: + push: + pull_request: + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup JS + uses: actions/setup-node@v4 + with: + cache: "yarn" + - run: yarn install --frozen-lockfile # optional, --immutable + - run: yarn test + - run: yarn lint