chore: update node from v16 to v20 #143
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Install CLI | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'install-cli/**' | |
- '.github/workflows/install-cli-*' | |
- 'lib' | |
pull_request: | |
paths: | |
- 'install-cli/**' | |
- '.github/workflows/install-cli-*' | |
- 'lib' | |
jobs: | |
unit: | |
name: Unit Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
- run: npm ci | |
- run: npm test --workspace install-cli | |
integration: | |
name: Integration Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- id: 'auth' | |
name: 'Authenticate to Google Cloud' | |
uses: 'google-github-actions/auth@v0' | |
with: | |
credentials_json: ${{ secrets.BW_EE_LABS_REGISTRY_KEY }} | |
create_credentials_file: true | |
- uses: ./install-cli | |
# Needs this because the version command can't run without. We should fix that. | |
- uses: google-github-actions/setup-gcloud@v0 | |
- run: slipstream version | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@main | |
with: | |
node-version-file: .nvmrc | |
- run: npm ci | |
- run: npm run build --workspace install-cli | |
- run: ./scripts/assert-git-clean.sh | |