Skip to content

Release 0.3.0

Release 0.3.0 #1

Workflow file for this run

# CI for command line NodeJS Applications
name: nodejs
on:
push:
paths:
- '**/**'
- '!**/*.md/**'
env:
CI: true
FORCE_COLOR: 2
jobs:
pipeline:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: ['14.x']
os: ['ubuntu-latest']
steps:
- name: Clone repository
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
# cache: 'yarn'
- name: Install yarn dependencies
run: yarn install
id: install
- name: Run build
run: yarn run build
id: build