diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7041fd..1893ae3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,21 +21,21 @@ jobs: name: Test runs-on: ubuntu-latest strategy: - matrix: - node-version: [14.x, 16.x, 18.x] - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: Install Dependencies - run: npm install - - name: Run Tests - run: npm test - env: - CI: true + matrix: + node-version: [14.x, 16.x, 18.x] + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install Dependencies + run: npm install + - name: Run Tests + run: npm test + env: + CI: true build: name: Docker