mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-21 06:09:25 +00:00
Run run ci instead of npm install in release please (#407)
This should ensure the lockfile doesn't change
This commit is contained in:
parent
9bd5f65b7f
commit
0b8ec28b66
1 changed files with 10 additions and 6 deletions
16
.github/workflows/release-please.yml
vendored
16
.github/workflows/release-please.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue