Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: delete deployment files, migrate npm to yarn & make lint pass in all packages #46

Merged
merged 17 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading