Skip to content

Commit

Permalink
fix: conversion for values (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
itsacoyote authored Jul 30, 2024
1 parent 1e99490 commit c5ba110
Show file tree
Hide file tree
Showing 13 changed files with 2,300 additions and 118 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Code Tests 🕵️

on:
pull_request:
branches: [main, staging]
workflow_dispatch:

env:
HUSKY: 0
CI: true

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test
Loading

0 comments on commit c5ba110

Please sign in to comment.