Skip to content

Remove outdated example #480

Remove outdated example

Remove outdated example #480

Workflow file for this run

name: Checks
on: [push]
env:
CI: true
jobs:
ci:
name: "Node ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16, 18]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
- run: yarn lint
if: ${{ matrix.node-version == 14 }}
- run: yarn test