Skip to content

Commit

Permalink
update workflow, cleanup deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard87 committed Jan 23, 2024
1 parent 4a2aa1a commit de7ee3a
Show file tree
Hide file tree
Showing 3 changed files with 370 additions and 118 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/radix-web-console-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,31 @@ jobs:
env:
REF: ${{ github. sha }}
run: docker build -t radix-web-console:${REF##*/} .

test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v4
- run: npm ci
- run: CI=true npm run test:no-watch

deps:
name: Dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run deps

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run lint
- run: npm run lint-ts
Loading

0 comments on commit de7ee3a

Please sign in to comment.