Skip to content

feat: Support resize window #34

feat: Support resize window

feat: Support resize window #34

Workflow file for this run

name: Test
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install Dependencies
run: npm i
- name: Build
run: npm run build
- name: Lint
run: npm run lint
# - name: Test
# run: npm run test