-
Notifications
You must be signed in to change notification settings - Fork 27
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
ci: prettier, drop node 19 #790
Conversation
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: npm ci | ||
- run: npm run lint |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since lint-docs.yml
had the same triggers as ci.yml
, i just deleted the former and combined it with the latter
- name: Install deps | ||
run: npm ci | ||
- name: Install deps and run tests | ||
run: npm cit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
our build
script now runs via a pretest
hook
🧰 Changes
Slightly reorganizes our lint/CI workflows to run
prettier
against everything. Also drops tests against Node 19.🧬 QA & Testing
Do tests pass?