-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve: Add .github actions under workflow/ directory (#3)
Must store YAML files under `.github/workflows` according to [docs](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions)
- Loading branch information
1 parent
298b1b3
commit 846e3e3
Showing
2 changed files
with
4 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
@@ -1,12 +1,15 @@ | ||
{ | ||
"name": "@across-protocol/constants-v2", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Export commonly re-used values for Across repositories", | ||
"repository": "https://github.com/across-protocol/constants-v2.git", | ||
"author": "[email protected]", | ||
"license": "MIT", | ||
"private": false, | ||
"type": "module", | ||
"files": [ | ||
"/dist/**/*" | ||
], | ||
"scripts": { | ||
"lint": "yarn eslint && yarn prettier --list-different", | ||
"lint-fix": "yarn eslint --fix && yarn prettier --write", | ||
|