Add instructions to configure service account in README (#201) #100
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
# This is a basic workflow to help you get started with Actions | |
name: PR Validation | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "master" branch | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Set up NPM and deps | |
- name: Set up NPM | |
run: npm ci | |
# Do a build | |
- name: Run Build | |
run: npm run build | |
# Check whether the compiled library changed | |
- name: Check Build Updated | |
uses: tj-actions/[email protected] | |
id: verify-built-lib | |
with: | |
files: lib/index.js | |
# If it did change, the authro forgot to build. Fail the action | |
- name: Verify Build Updated | |
if: steps.verify-changed-files.outputs.files_changed == 'true' | |
run: exit 1 | |
- name: Run Tests | |
run: npm test |