Run run ci instead of npm install in release please (#407)

This should ensure the lockfile doesn't change
This commit is contained in:
Seth Vargo 2021-11-30 17:06:48 -05:00 committed by GitHub
parent 9bd5f65b7f
commit 0b8ec28b66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,12 +9,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: git pull
- name: install
run: npm install
- name: build
run: npm run build
- uses: 'actions/checkout@v2'
with:
fetch-depth: '0'
- uses: 'actions/setup-node@v2'
with:
node-version: '12.x'
- name: 'npm ci'
run: 'npm ci'
- name: 'npm build'
run: 'npm run build'
- name: commit
run: |-
set -e