Skip to content

v1.0.0 add Action.follow(...), add .easeInOut() helpers #2

v1.0.0 add Action.follow(...), add .easeInOut() helpers

v1.0.0 add Action.follow(...), add .easeInOut() helpers #2

Workflow file for this run

name: "test"
on:
push:
branches: ["main"]
paths:
- "**/*.js"
- "**/*.ts"
pull_request:
branches: ["*"]
paths:
- "**/*.js"
- "**/*.ts"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test