From 9c9ce0af695658ff7af8c7ab76a0bfabfa1fc534 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Tue, 7 Jan 2025 15:46:06 -0800 Subject: [PATCH] ci: update local copy of ci.yml --- .github/workflows/ci.yml | 30 ++---------------------------- 1 file changed, 2 insertions(+), 28 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e8a0e2..0714e9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,32 +10,6 @@ jobs: lint: uses: haraka/.github/.github/workflows/lint.yml@master - # coverage: - # uses: haraka/.github/.github/workflows/coverage.yml@master - # secrets: inherit - test: - needs: lint - runs-on: ${{ matrix.os }} - services: - redis: - image: redis - ports: - - 6379:6379 - strategy: - matrix: - os: [ ubuntu-latest ] - node-version: [ 16, 18 ] - fail-fast: false - - steps: - - uses: actions/checkout@v3 - - - uses: actions/setup-node@v3 - name: Node ${{ matrix.node-version }} on ${{ matrix.os }} - with: - node-version: ${{ matrix.node-version }} - - - run: npm install - - run: npm test - + needs: [lint] + uses: haraka/.github/.github/workflows/ubuntu.yml@master