Skip to content

chore: upgrade deps #14

chore: upgrade deps

chore: upgrade deps #14

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
tags-ignore:
- "**"
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install
run: |
yarn
- name: Lint
run: |
yarn lint:prettier
yarn lint:eslint
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
needs: lint
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install
run: |
yarn
- name: Build
run: |
yarn build