Skip to content

Pass the timezone ID from the UI to parse the date in the imported st… #170

Pass the timezone ID from the UI to parse the date in the imported st…

Pass the timezone ID from the UI to parse the date in the imported st… #170

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- name: npm install, build, and test
run: |
npm i
npm i -g grunt-cli
npm ci
npm run build --if-present
npm run lint
npm test
env:
CI: true