Skip to content

chore(release): publish new versions #1565

chore(release): publish new versions

chore(release): publish new versions #1565

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Lint on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["16.17.1"]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm ci
- name: Bootstrap
run: npm run bootstrap
- name: Lint
run: npm run lint