-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add back Makefile, remove ccu from GH Actions publish (#2446)
- Loading branch information
1 parent
4be7432
commit 095ba2b
Showing
6 changed files
with
44 additions
and
21,605 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
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 |
---|---|---|
|
@@ -42,25 +42,25 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: 'npm' | ||
cache: 'yarn' | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
run: yarn | ||
|
||
- name: Build package | ||
run: npm run build | ||
run: yarn build | ||
|
||
- name: Run `es-check` | ||
run: npm run test:es-check | ||
run: yarn test:es-check | ||
|
||
- name: Run `i18n:validate` | ||
run: npm run i18n:validate | ||
run: yarn i18n:validate | ||
|
||
- name: Run Jest unit tests | ||
run: npm run test | ||
run: yarn test | ||
|
||
- name: Run Karma end-to-end tests | ||
run: npm run test:e2e | ||
run: yarn test:e2e | ||
|
||
- name: Upload coverage | ||
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # [email protected] |
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
"files": { | ||
"README.md": [] | ||
}, | ||
"postbump": "npm run dist && npm run build" | ||
"postbump": "yarn dist build" | ||
} |
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
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,22 @@ | ||
#!/usr/bin/env make | ||
|
||
#SHELL := /bin/bash | ||
#.SHELLFLAGS = -ec | ||
|
||
.PHONY: install lint test build cdn-publish | ||
|
||
install: | ||
@echo "Running install..." | ||
yarn install | ||
|
||
test: | ||
@echo "Running test..." | ||
yarn test | ||
|
||
build: | ||
@echo "Running build..." | ||
rm -rf dist && rm -rf build && yarn dist build | ||
|
||
publish: | ||
@echo "Running cdn-publish..." | ||
yarn publish:cdn |
Oops, something went wrong.