Skip to content

refactor: ♻️ pipeline refactored to allow running yarn run test successfully #20

refactor: ♻️ pipeline refactored to allow running yarn run test successfully

refactor: ♻️ pipeline refactored to allow running yarn run test successfully #20

name: Pull Request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test
- run: yarn coverage