From 0fbaf7ffa3ca60978201cdba00c35470715b0edf Mon Sep 17 00:00:00 2001 From: Andrey Fel Date: Fri, 29 Dec 2023 17:06:12 +0100 Subject: [PATCH] Run node tests in CI --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ca1d9e5..d896342b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,20 @@ jobs: - run: yarn lint - run: yarn test:ember + test-node: + name: Node Tests + runs-on: ubuntu-latest + timeout-minutes: 30 + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + cache: 'yarn' + - run: yarn install --frozen-lockfile + - run: yarn test:node + floating-dependencies: name: "Floating Dependencies" runs-on: ubuntu-latest