Skip to content

Add npm tag

Add npm tag #14

Workflow file for this run

name: Typescript CI
on:
push:
branches: [master, rc-*]
pull_request:
branches: [rc-*]
jobs:
build:
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Create Bundler files
run: npm run build