Skip to content

feat: Add isValidRgba validation to parseRgba #36

feat: Add isValidRgba validation to parseRgba

feat: Add isValidRgba validation to parseRgba #36

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'feature/*'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20] # Test against Node.js 18 and 20
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn build
- run: yarn test