Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
617535b
WIP: app create tests
Mortza81 Feb 23, 2025
6b3333a
chore: add tests for app create command
Mortza81 Feb 25, 2025
d4276bf
add: login command tests
Mortza81 Mar 9, 2025
f5b220a
fix typo
Mortza81 Mar 9, 2025
b9449de
chore: account use command tests
Mar 10, 2025
3057076
fix typo
Mar 10, 2025
75fa40a
chore: complete account use command tests
Mortza81 Mar 11, 2025
376d743
start deploy command tests
Mortza81 Mar 13, 2025
c193432
chore: add test for deploy command
Mar 15, 2025
a63bddf
chore: image deployment test
Mortza81 Mar 17, 2025
3b3f17c
WIP: create-archive tests
Mortza81 Mar 18, 2025
15257c7
chore: add some tests for create archive function
Mar 24, 2025
9bdf6fe
chore: complete createArchive tests
Mortza81 Mar 25, 2025
5008e88
chore: complete createArchive tests
Mortza81 Mar 25, 2025
46600d0
chore: change fixtures
Mortza81 Mar 25, 2025
a0cada7
chore: add gitignore in fixtures
Mortza81 Mar 25, 2025
7a70426
delete unnecessary files in fixtures
Mortza81 Mar 29, 2025
195f9c9
Merge branch 'master' into chore/add-tests
Mortza81 Jul 31, 2025
855eaf8
update: tests
Mortza81 Jul 31, 2025
df4807c
chore: refactor getAllFiles()
Mortza81 Aug 8, 2025
30e5f24
fix: return node param
Mortza81 Aug 8, 2025
b75a678
chore: remove unnecessary param in network type
Mortza81 Aug 8, 2025
d401d5b
chore: add ci.yaml
Mortza81 Aug 8, 2025
73c8d3a
Merge branch 'master' into chore/add-tests
Mortza81 Aug 8, 2025
a959c64
chore: remove region from tests
Mortza81 Aug 8, 2025
26cbb92
fix: workflow
Mortza81 Aug 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run tests

on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i -g npm
- run: npm ci
- run: npm run test
Loading