Skip to content

feat: Advanced command #132

feat: Advanced command

feat: Advanced command #132

Workflow file for this run

name: Build CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.1.0]
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 deps
run: npm ci
- name: 🧪 Coverage Tests
run: npm run test:coverage
- name: 🏗️ Build
run: npm run build
- name: 🧑‍🔬 Coveralls GitHub Action
uses: coverallsapp/github-action@v2.2.3