Skip to content

feat: initial v0.1.0 public release #1

feat: initial v0.1.0 public release

feat: initial v0.1.0 public release #1

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: npm
- name: Install (skip @auraone/sdk linking issues for now)
run: npm install --no-package-lock || true
- name: Lint
run: npm run lint
- name: Test
run: npm test