Skip to content

hotfix: build dir

hotfix: build dir #46

Workflow file for this run

name: Run tests
on:
pull_request:
branches:
- develop
- homologation
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [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 }}
- name: Install packages
run: yarn
- name: Unit tests
run: yarn test