-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add workflow file for pull requests (#59)
- Loading branch information
1 parent
3effd8b
commit e1152d2
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# This workflow will run all checks required for a PR to be merged. | ||
|
||
name: Build and Test ci | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
build-and-test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "18.16.1" | ||
registry-url: "https://registry.npmjs.org" | ||
|
||
- name: Check Yarn Version | ||
run: yarn --version | ||
|
||
- name: Install dependencies | ||
run: yarn | ||
|
||
- name: Check linting and formatting | ||
run: | | ||
if yarn lint && yarn format --check; then | ||
echo "Linting and formatting checks passed." | ||
else | ||
echo "Linting or formatting checks failed. Please fix the issues." | ||
exit 1 | ||
fi |