Skip to content

Bump jsonwebtoken, firebase-admin and firebase-tools #431

Bump jsonwebtoken, firebase-admin and firebase-tools

Bump jsonwebtoken, firebase-admin and firebase-tools #431

Workflow file for this run

---
###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint Code Base
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
push:
branches-ignore: [live]
# Remove the line above to run when pushing to live
pull_request:
branches: [live]
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2
############
# Use node #
############
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
########################
# Install dependencies #
########################
- run: npm ci
################################
# Run Linter against code base #
################################
- name: Lint Code Base
- run: npm run lint