Skip to content

Upgrade: Bump @zazen/eslint-config from 6.7.0 to 6.8.0 #230

Upgrade: Bump @zazen/eslint-config from 6.7.0 to 6.8.0

Upgrade: Bump @zazen/eslint-config from 6.7.0 to 6.8.0 #230

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Lint and test
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout repo
uses: actions/checkout@v3
# https://github.com/pnpm/action-setup
- uses: pnpm/action-setup@v2
with:
version: 6
# https://github.com/actions/setup-node
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: npm run lint
- name: Test
run: npm test