Skip to content

Commit

Permalink
Fix remove old publish script (#534)
Browse files Browse the repository at this point in the history
* Remove old publish script

* Remove package-lock on release

* Remove package-lock.json in all actions
  • Loading branch information
blakewilson authored Oct 5, 2021
1 parent 1b96b39 commit 980253a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 41 deletions.
1 change: 1 addition & 0 deletions .github/workflows/e2e-next-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- name: install and build packages
working-directory: ./
run: |
rm package-lock.json
npm install
npm run build
# To ensure PR changes are tested accurately, we replace the
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: rm package-lock.json
- run: npm install
- run: npm run build
- run: npm run lint
Expand Down
41 changes: 0 additions & 41 deletions .github/workflows/publish.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/workflows/release-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
with:
node-version: 16.x

- name: Remove package-lock.json
run: |
rm package-lock.json
- name: Install Dependencies
run: npm install

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: rm package-lock.json
- run: npm install
- run: npm run build
- run: npm test
Expand Down

0 comments on commit 980253a

Please sign in to comment.