Skip to content

build(deps-dev): bump prettier from 2.3.0 to 3.2.2 in /functions #473

build(deps-dev): bump prettier from 2.3.0 to 3.2.2 in /functions

build(deps-dev): bump prettier from 2.3.0 to 3.2.2 in /functions #473

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different
# versions of node. For more information see:
# https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
working-directory: functions
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 10.x
- 12.x
- 14.x
steps:
- uses: actions/checkout@v2
# TODO(jlucktay): if node version is 10, realign package.json with
# https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping#node-10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npx prettier --check .
- run: npm run lint
- run: npm run build
- run: npm test