Skip to content

EOCI-213: [pt. 4] better error logging #108

EOCI-213: [pt. 4] better error logging

EOCI-213: [pt. 4] better error logging #108

Workflow file for this run

name: PR Build & Test
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.LIFEOMIC_NPM_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18
- name: Build & Test
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
yarn install --frozen-lockfile
yarn lint
yarn test
yarn build