Skip to content

Commit

Permalink
chore: migrate to npm
Browse files Browse the repository at this point in the history
Signed-off-by: Raimund Schlüßler <[email protected]>
  • Loading branch information
raimund-schluessler committed Oct 2, 2023
1 parent 1f6d757 commit 7fb7749
Show file tree
Hide file tree
Showing 5 changed files with 21,928 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
node-version: 12

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

- name: Test with Coverage
run: yarn test
run: npm run test

- name: Build
run: yarn build
run: npm run build

- name: Release
env:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
node-version: 12

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

- name: Test with Coverage
run: yarn test --coverage --coverageReporters=lcov
run: npm run test --coverage --coverageReporters=lcov

- name: ESLint
run: yarn eslint
run: npm run eslint

- name: Report Coverage
uses: coverallsapp/github-action@master
Expand All @@ -33,15 +33,15 @@ jobs:

- name: Install dependencies
run: |
yarn install --frozen-lockfile
npm ci
cd docs
yarn install --frozen-lockfile
npm ci
- name: Build Dist
run: yarn build
run: npm run build

- name: Bundlewatch
run: npx bundlewatch

- name: Build Docs
run: yarn build:docs
run: npm run build:docs
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ yarn-error.log*
coverage
dist
test/unit/coverage
package-lock.json
dev/dist
docs/.vuepress/dist
.netlify
Loading

0 comments on commit 7fb7749

Please sign in to comment.