From 7e7b0c47ac01929b0c3cafbc889ccdf2e636b60b Mon Sep 17 00:00:00 2001 From: titanism <101466223+titanism@users.noreply.github.com> Date: Tue, 30 Apr 2024 16:07:23 -0500 Subject: [PATCH] fix: fixed ci syntax --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a304d25..2d958a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,20 +11,20 @@ jobs: - macos-latest # TODO: re-enable windows #- windows-latest - node_version: + node: - 14 - 16 - 18 exclude: - os: macos-latest node: 14 - name: Node ${{ matrix.node_version }} on ${{ matrix.os }} + name: Node ${{ matrix.node }} on ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Setup node uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node_version }} + node-version: ${{ matrix.node }} - name: Install dependencies run: npm install - name: Run tests