Second pass on dependency updates #23
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
# overall CI pipeline name | |
name: Build and test export server | |
# only run on master and stage branches | |
on: | |
push: | |
branches: | |
- master | |
- stage | |
# Environment variables available to all jobs and steps in this workflow | |
env: | |
CI: true | |
PROJECT_ID: ${{secrets.GCLOUD_PROJECT_ID}} | |
APPLICATION_CREDENTIALS: ${{secrets.GOOGLE_APPLICATION_CREDENTIALS}} | |
# jobs are the different pipelines | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [10.x, 12.x] | |
# define all the steps in the "build" stage | |
steps: | |
# use the checkout action | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# Try to build and run tests again export server | |
- name: npm install, build, and test | |
run: | | |
npm ci | |
npm run build --if-present | |
npm test | |