-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
45 additions
and
49 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,45 @@ | ||
name: Lint and unit tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'spring*' | ||
- 'summer*' | ||
- 'winter*' | ||
pull_request: | ||
branches: | ||
- master | ||
- 'spring*' | ||
- 'summer*' | ||
- 'winter*' | ||
|
||
jobs: | ||
lint-unit-tests: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.11.0' | ||
cache: 'yarn' | ||
|
||
- name: Install dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Check License Headers | ||
run: yarn check-license-headers | ||
|
||
- name: Check formatting | ||
run: yarn format:check | ||
|
||
- name: Run linter | ||
run: yarn lint | ||
|
||
- name: Run unit tests | ||
run: yarn test | ||
|
||
|