Skip to content

Commit

Permalink
Replace yarn with npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Afgan0r committed Apr 21, 2024
1 parent 878e9ba commit aa2545f
Show file tree
Hide file tree
Showing 8 changed files with 11,559 additions and 5,002 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,32 +12,29 @@ jobs:
name: Linter
steps:
- uses: actions/checkout@v3
- uses: c-hive/gha-yarn-cache@v2
- name: Install dependencies
run: yarn install
run: npm i
- name: Run linter
run: yarn lint
run: npm run linter

tsc:
runs-on: ubuntu-latest
name: Types check
steps:
- uses: actions/checkout@v3
- uses: c-hive/gha-yarn-cache@v2
- name: Install dependencies
run: yarn install
run: npm i
- name: Run the types check
run: yarn tsc
run: npm run tsc

tests:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@v3
- uses: c-hive/gha-yarn-cache@v2
- name: Install dependencies
run: yarn install
run: npm i
- name: Run the tests
run: yarn test
run: npm run test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/node_modules
/dist
/yarn-error.log
/output
/coverage
/replaysList.json
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.18.1
v18.14.0
13 changes: 0 additions & 13 deletions Dockerfile

This file was deleted.

Loading

0 comments on commit aa2545f

Please sign in to comment.