Skip to content

adding custom hook to access the selection object #33

adding custom hook to access the selection object

adding custom hook to access the selection object #33

Workflow file for this run

name: CI
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Restore cache
uses: actions/cache@v3
with:
path: |
node_modules
packages/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build