Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

1.1.1-deprecated

1.1.1-deprecated #18

Workflow file for this run

name: CI
on:
release:
types: [published]
jobs:
check:
name: Check on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install deps
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
- name: Test
run: yarn test