Skip to content

chore: bump version

chore: bump version #6

Workflow file for this run

name: Test package
on:
push:
branches:
- master
workflow_dispatch:
jobs:
test-pkg:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
registry-url: https://registry.npmjs.org/
- name: npm install
run: npm ci
# - name: npm run build
# run: npm run build
- name: npm run test
run: npm run test
env:
DB_URL: ${{ secrets.DB_URL }}
DB_SKR: ${{ secrets.DB_SKR }}