Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): Move build dependencies to non-dev dependencies #1107

Merged
merged 10 commits into from
Feb 24, 2023
11 changes: 5 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ jobs:
with:
node-version: 18
- name: Install dependencies
run: |
npm install
run: npm ci
- name: Build bob
run: |
npm run build
run: npm run build
- name: Install developer dependencies
run: npm i
- name: Run tests
run: |
npm run test
run: npm run test
Loading