Skip to content

Commit

Permalink
Migrate from yarn to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
philipahlberg committed Jul 13, 2021
1 parent eed9e09 commit 2abc0f7
Show file tree
Hide file tree
Showing 5 changed files with 585 additions and 211 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 16
- run: yarn install
- run: yarn run build
- run: yarn run test
- run: yarn publish
- run: npm install
- run: npm run build
- run: npm run test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 16
- run: yarn install
- run: yarn run build
- run: yarn run test
- run: npm install
- run: npm run build
- run: npm run test
Loading

0 comments on commit 2abc0f7

Please sign in to comment.