Skip to content

Moved form

Moved form #1806

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['latest']
os: [ubuntu-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
run: npm ci
- name: Lint
run: npm run lint
- name: Format
run: npm run format
- name: Test
run: npm run test