Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: bahmutov/npm-install@v1

- name: Test
run: yarn test --ci --coverage --maxWorkers=2
run: npm test --ci --coverage --maxWorkers=2

- name: Build
run: yarn build
run: npm run build
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
registry-url: 'https://registry.npmjs.org' # set up .npmrc file to publish to npm

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

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

- name: Publish
run: yarn publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ dist
target/
.vscode/
.idea/
package-lock.json
yarn.lock
4 changes: 2 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# and commit this file to your remote git repository to share the goodness with others.

tasks:
- init: yarn install && yarn run build
command: yarn run test
- init: npm install && npm run build
command: npm test
Loading