Skip to content

#231 feature/refactor is drop image from file to utils file and add unit testing #299

#231 feature/refactor is drop image from file to utils file and add unit testing

#231 feature/refactor is drop image from file to utils file and add unit testing #299

Workflow file for this run

name: CI Workflow
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js 18.13.0
uses: actions/setup-node@v2
with:
node-version: '18.13.0'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Check TypeScript types
run: npm run tsc-check
- name: Run tests
run: npm test