Skip to content

Commit

Permalink
Merge pull request #46 from Moonsong-Labs/delete-deployments
Browse files Browse the repository at this point in the history
fix: delete deployment files, migrate npm to yarn & make lint pass in all packages
  • Loading branch information
tomimor authored Feb 11, 2025
2 parents ac5d646 + 6c19bed commit 86945cf
Show file tree
Hide file tree
Showing 74 changed files with 4,894 additions and 5,193 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/api-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache: 'yarn'

- name: Install dependencies
run: |
npm ci --ignore-scripts
yarn install --ignore-scripts
- name: Run e2e tests
run: |
npm run test:e2e
yarn run test:e2e
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/composite@v2
Expand Down
102 changes: 0 additions & 102 deletions .github/workflows/app-deploy-feature-branch.yml

This file was deleted.

93 changes: 0 additions & 93 deletions .github/workflows/app-deploy-preview.yml

This file was deleted.

61 changes: 0 additions & 61 deletions .github/workflows/app-deploy-prod.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/app-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache: 'yarn'

- name: Cache node modules
id: cache-nodemodules
Expand All @@ -93,8 +93,8 @@ jobs:
working-directory: ./
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: |
npm pkg delete scripts.prepare
npm ci
yarn pkg delete scripts.prepare
yarn ci
- name: Download allurectl
run: wget https://github.com/allure-framework/allurectl/releases/latest/download/allurectl_linux_386 -O ./allurectl
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/nodejs-license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,13 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn

- name: Install license checker
run: npm install -g license-checker
run: yarn global add license-checker

- name: Install dependencies
run: npm ci
run: yarn install

- name: Check licenses in ${{ matrix.dir }}
working-directory: ${{ matrix.dir }}
Expand Down
Loading

0 comments on commit 86945cf

Please sign in to comment.