Skip to content

Updated GH action titles in command tests. #4

Updated GH action titles in command tests.

Updated GH action titles in command tests. #4

Workflow file for this run

name: CI
on:
push:
jobs:
test:
name: Run test commands
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm i
- name: Test 'version' command
run: npm run test-version
- name: Test 'help' command
run: npm run test-help
- name: Test 'png' command
run: npm run test-png
- name: Test 'gif' command
run: npm run test-gif