Skip to content

Update meta info of package #11

Update meta info of package

Update meta info of package #11

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest] # skip windows-latest (fails lint) and ubuntu-latest (fails test)
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'npm'
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn test