From 98409c0b31b19f274248b0697b520e1529c68892 Mon Sep 17 00:00:00 2001 From: Daniel Muller Date: Thu, 24 Oct 2024 14:11:11 +0100 Subject: [PATCH] Create test workflow --- .github/workflows/test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..fd2728b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,24 @@ +name: Lint and Unit Test +on: + pull_request: + branches: + - main +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm run test:lint + unit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm run test:unit