Skip to content

Commit

Permalink
fix: typescript errros (#34)
Browse files Browse the repository at this point in the history
* chore: move to .js

* chore: add the modules and tsconfig

* chore: changes

* chore: format

* chore: fix order

* chore: use latest version

* chore: package locl

* chore: build the shared

* chore: server

* chore: cache

* chore: packge lock

* chore: test

* chore: test

* chore test

* chroe test

* chore: test

* chore fixes

* chore: same workflows

* chore: changes
  • Loading branch information
Michael-Liendo authored Aug 25, 2024
1 parent 19e9683 commit c7cbfeb
Show file tree
Hide file tree
Showing 39 changed files with 2,048 additions and 1,823 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,17 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
node-version: latest
cache: 'npm'

- name: Install Dependencies
run: npm install

- name: Client Build Check
run: npm run client:lint

- name: Shared Build
run: npm run shared:build

- name: Client Build Check
run: npm run client:build
31 changes: 0 additions & 31 deletions .github/workflows/lint.yml

This file was deleted.

9 changes: 8 additions & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,18 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
node-version: latest
cache: 'npm'

- name: Install Dependencies
run: npm install

- name: Server Build Check
run: npm run server:lint

- name: Shared Build
run: npm run shared:build

- name: Server Build Check
env:
NODE_ENV: production
Expand Down
Loading

0 comments on commit c7cbfeb

Please sign in to comment.