Skip to content

Commit

Permalink
chore: add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
codingki committed Jun 29, 2024
1 parent f26fb66 commit 5066126
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @codingki @NotJeremyLiu
55 changes: 55 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Tests
on: [pull_request, push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node 18.x
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: npm ci

- name: Generate cosmjs types
run: npm run codegen
working-directory: ./packages/core

- name: Test
run: npm test

e2e-tests:
runs-on: ubuntu-latest-m
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node 18.x
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: npm ci
working-directory: ./packages/core

- name: Generate cosmjs types
run: npm run codegen
working-directory: ./packages/core

- name: Setup starship
run: npm run e2e:setup HELM_FILE=starship/ci.yaml
working-directory: ./packages/core

- name: Start starship
run: make start HELM_FILE=starship/ci.yaml
working-directory: ./packages/core

- name: Run e2e tests
run: npm run e2e:test
working-directory: ./packages/core

0 comments on commit 5066126

Please sign in to comment.