diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09c3566..8dd9afa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,25 +3,24 @@ name: tests on: push jobs: - tests: - runs-on: ubuntu-latest + tests: + runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.x, 19.x] + strategy: + matrix: + node-version: [18.x, 20.x] - name: Node ${{ matrix.node-version }} + name: Node ${{ matrix.node-version }} - steps: - - uses: actions/checkout@v4 + steps: + - uses: actions/checkout@v4 - - uses: actions/setup-node@v4.0.1 - with: - node-version: ${{ matrix.node-version }} + - uses: actions/setup-node@v4.0.1 + with: + node-version: ${{ matrix.node-version }} - - name: Install testing dependencies - run: yarn install - - - name: Run Tests - run: yarn test + - name: Install testing dependencies + run: npm install + - name: Run Tests + run: npm test