fix: decoding UTCTime and GeneralizedTime for certain dates #114
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Install Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
# always-auth: true | |
# registry-url: https://registry.npmjs.org | |
node-version: ${{ matrix.node-version }} | |
# scope: '@jonathanwilbur' | |
- name: Install NPM Dependencies | |
run: npm ci | |
# env: | |
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Lint | |
run: npm run lint --if-present | |
- name: Build | |
run: npm run build | |
- name: Run Jest Tests | |
run: npm test | |
env: | |
CI: true |