diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..54b4e44 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: CI + +on: + pull_request: + push: + branches: + - main + +jobs: + validate_list: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js 20 + uses: actions/setup-node@v4 + with: + node-version: 20 + + - run: npm install + - run: npm test diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..d1eeb20 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,37 @@ +# Contributing + +You're welcome to contribute to this repository directly by creating a PR. + +To do so, please follow the steps: + +1. Clone the repository + +```bash +git clone git@github.com:celo-org/celo-token-list.git +``` + +2. Install the dependencies + +```bash +npm install +``` + +3. Make changes... + +4. (optional) Run validation check + +```bash +npm run test +``` + +4. Commit and push your changes + +```bash +git checkout -b "" +git commit -m "" +git push origin +``` + +5. Raise a PR using GitHub UI + +Thanks! \ No newline at end of file diff --git a/celo.tokenlist.json b/celo.tokenlist.json index 259e27e..1dfb955 100644 --- a/celo.tokenlist.json +++ b/celo.tokenlist.json @@ -3,7 +3,7 @@ "version": { "major": 2, "minor": 4, - "patch": 0 + "patch": 1 }, "logoURI": "https://celo-org.github.io/celo-token-list/assets/celo_logo.svg", "keywords": ["celo", "tokens", "refi"],