Skip to content

pad-left pad-right max-by min-by #77

pad-left pad-right max-by min-by

pad-left pad-right max-by min-by #77

Workflow file for this run

name: NodeJS with Webpack
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
environment: npm
strategy:
matrix:
node-version: [16.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 install
npx webpack
npx tsc -p tsconfig.json
- uses: JS-DevTools/npm-publish@v2
if: contains(github.ref, 'master')
with:
token: ${{ secrets.NPM_TOKEN }}