Skip to content

fix: upgrade tslib from 2.6.2 to 2.6.3 #37

fix: upgrade tslib from 2.6.2 to 2.6.3

fix: upgrade tslib from 2.6.2 to 2.6.3 #37

Workflow file for this run

name: ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: npm ci
- name: Test
run: npm test
- name: Build Site
run: npm run site
- name: Deploy Site
if: ${{ github.ref == 'refs/heads/main' && matrix.node-version == '20.x' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: site