-
Notifications
You must be signed in to change notification settings - Fork 0
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
PDT24-18 | Github Action Integration #8
Conversation
Quality Gate passedIssues Measures |
@noxiousghost good job!! |
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: yarn | ||
cache-dependency-path: './yarn.lock' | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Run linters | ||
run: yarn lint && yarn format |
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.
Not a big issue but you can separate each step with an empty line so it's easier to read jobs with large number of steps :)
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.
LGTM 🏆
Tasks
Changes