docs(firestore-bigquery-export): add instructions for adding KMS role #3949
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: Testing | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
nodejs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ["14", "16"] | |
name: node.js_${{ matrix.node }}_test | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "npm" | |
cache-dependency-path: "**/package-lock.json" | |
- name: NPM INSTALL | |
run: npm i | |
- name: build emulator functions | |
run: cd _emulator/functions && npm i && npm run build & cd ../.. | |
- name: Install firebase CLI | |
uses: nick-invision/retry@v1 | |
with: | |
timeout_minutes: 10 | |
retry_wait_seconds: 60 | |
max_attempts: 3 | |
command: npm i -g firebase-tools@11 | |
- name: npm test | |
run: npm run test:ci |