Skip to content

Replace moment library with date-fns library. #13

Replace moment library with date-fns library.

Replace moment library with date-fns library. #13

Workflow file for this run

name: Build and Test for Pull Request
on:
pull_request:
types: [opened, synchronize]
jobs:
deploy:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: cd functions; yarn install
- name: Build and Test
run: cd functions; yarn build && yarn test