Skip to content

build(deps): bump yaml, husky and lint-staged #50

build(deps): bump yaml, husky and lint-staged

build(deps): bump yaml, husky and lint-staged #50

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request: {}
jobs:
test:
name: Test & Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test