Skip to content

ref(troubleshooting): Add steps for re-setting the node_modules #62

ref(troubleshooting): Add steps for re-setting the node_modules

ref(troubleshooting): Add steps for re-setting the node_modules #62

Workflow file for this run

name: Test Build
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Test Build
run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
npm run build