From efee3c79d1444d5fd7d17527f228b4e7a2fb5d54 Mon Sep 17 00:00:00 2001 From: Chris Oliver Date: Thu, 14 Mar 2024 10:23:45 -0500 Subject: [PATCH] Update CI for main branch and LTS --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d72670..832af6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,20 +6,17 @@ on: - '*' push: branches: - - master + - main jobs: test: runs-on: ubuntu-latest - strategy: - matrix: - node: ['lts'] - name: Node ${{ matrix.node }} + name: Tests steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node }} + node-version: 'lts/*' - run: npm install - run: npm run build - run: npm run test