Skip to content

Bump prettier from 3.0.0 to 3.0.1 (#29) #80

Bump prettier from 3.0.0 to 3.0.1 (#29)

Bump prettier from 3.0.0 to 3.0.1 (#29) #80

Workflow file for this run

name: 'CI'
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lintAndTest:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Use Node.js v18
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install Packages
run: npm install
- name: Format
run: npm run format:check
- name: Lint
run: npm run lint:check
- name: Type Check
run: npm run type:check
- name: Test
run: npm test --ci