From f512d5cacb0bfdc93ce0e32d86d04f252805a8d4 Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Wed, 11 Aug 2021 23:56:29 -0700 Subject: [PATCH] typo: don't run on node 18 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7225b26..aebabe2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: name: Node ${{ matrix.node }} strategy: matrix: - node: [ "12", "14", "16", "18" ] + node: [ "12", "14", "16" ] runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2