Skip to content

chore: release v1.0.0-beta.16 #273

chore: release v1.0.0-beta.16

chore: release v1.0.0-beta.16 #273

Workflow file for this run

name: Test & Lint
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
workflow_call:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: lint
run: npm run lint
- name: test
run: npm run test