Skip to content

Add workflow to increment version automatically on push to master #258

Add workflow to increment version automatically on push to master

Add workflow to increment version automatically on push to master #258

Workflow file for this run

name: Build
on:
pull_request:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Build
run: |
npm run build
ls -lh dist