chore(deps): bump word-wrap from 1.2.3 to 1.2.4 (#376) #1026
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code CI | |
on: | |
push: | |
jobs: | |
build: | |
name: Build and test code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node and restore cached dependencies | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '14' # Vercel uses node 14 | |
cache: 'yarn' | |
- name: Install packages | |
run: yarn install --prefer-offline | |
- name: Test formatting | |
run: yarn prettier . --check | |
- name: Lint | |
run: yarn lint | |
- name: Build | |
run: yarn build |