Update react monorepo #1035
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: Continuous Integration Workflow | |
on: [push] | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: install | |
run: | | |
pnpm install | |
- name: lint | |
run: | | |
pnpm run lint | |
- name: test | |
run: | | |
pnpm run test | |
- name: build | |
run: | | |
pnpm run build | |
env: | |
STORAGE_API_ENDPOINT: https://storage.googleapis.com | |
STORAGE_ACCESS_KEY_ID: ${{ secrets.STORAGE_ACCESS_KEY_ID }} | |
STORAGE_SECRET_ACCESS_KEY: ${{ secrets.STORAGE_SECRET_ACCESS_KEY }} | |
GCS_BUCKET_NAME: ${{ secrets.GCS_BUCKET_NAME }} | |
GCS_FILE_NAME: ${{ secrets.GCS_FILE_NAME }} |