Skip to content

fix: upgrade moment from 2.29.4 to 2.30.1 #1354

fix: upgrade moment from 2.29.4 to 2.30.1

fix: upgrade moment from 2.29.4 to 2.30.1 #1354

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Verify
run: npm run verify
- name: Build
run: npm run build --if-present
- name: Test
run: npm test
env:
CI: true