Skip to content

Ignore build files from package #5

Ignore build files from package

Ignore build files from package #5

Workflow file for this run

name: build
on:
push:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
- name: npm ci
run: npm ci
- name: npm pack
run: npm pack
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: publishtest-cli
path: '*.tgz'