diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 643c6cf..203497c 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -9,14 +9,15 @@ jobs: env: CI: true strategy: - matrix: node-version:[14.x, 16.x, 20.x] + matrix: + node-version: [14.x, 16.x, 20.x] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Use Node.js version ${{matrix.node-version}} + - name: Use Node.js version ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: ${{matrix.node-version}} + node-version: ${{ matrix.node-version }} - run: npm install - run: npm run build --prefix client - run: npm test