Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

refactor!: update typescript and convert to ESM package: Major #11

refactor!: update typescript and convert to ESM package: Major

refactor!: update typescript and convert to ESM package: Major #11

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [12.x, 14.x, 15.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install --frozen-lockfile --non-interactive
- name: Build
run: yarn run build