Skip to content

TLS-20 Add serializer functions to JS/TS library #7

TLS-20 Add serializer functions to JS/TS library

TLS-20 Add serializer functions to JS/TS library #7

Workflow file for this run

name: Push Checks
on: [push, pull_request]
jobs:
lint-and-format:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install & test
run: |
corepack enable
yarn install
yarn lint
yarn ts:check
env:
CI: true
- name: Codecov Action
uses: codecov/codecov-action@v1