From a1351275144f58def25c85d2a24b3e6a9a7a4d3f Mon Sep 17 00:00:00 2001 From: bergi Date: Fri, 9 Feb 2024 22:30:28 +0100 Subject: [PATCH] chore: removed deprecated ci script --- .github/workflows/ci.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 2a038dd..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: CI -on: push -jobs: - test: - runs-on: ubuntu-20.04 - strategy: - matrix: - node: - - '12' - - '14' - - '16' - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node }} - - run: npm install - - run: npm test - - run: npm run coverage