Skip to content

feat: add presets sync support #31

feat: add presets sync support

feat: add presets sync support #31

Workflow file for this run

name: Pull request on main or next
on:
pull_request:
branches: [ main, next ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm run test
- run: npm run build