Skip to content

Added initial @untypeable/uuid.rocks package #43

Added initial @untypeable/uuid.rocks package

Added initial @untypeable/uuid.rocks package #43

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
LEMON_SQUEEZY_API_KEY: ${{ secrets.LEMON_SQUEEZY_API_KEY }}
LOGSNAG_API_KEY: ${{ secrets.LOGSNAG_API_KEY }}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 19.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install
run: yarn install --frozen-lockfile
- name: Test
run: yarn test