Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

chore(deps): update dependency prettier to v3 #234

chore(deps): update dependency prettier to v3

chore(deps): update dependency prettier to v3 #234

Workflow file for this run

name: build
on:
push:
jobs:
build:
timeout-minutes: 15
env:
CI: true
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 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: npm
- name: Use NPM 8
run: npm i -g npm@8
- run: npm ci
- name: build
run: npm run build
- name: test
id: test
if: ${{ always() }}
run: npm run test
- name: lint
if: ${{ always() }}
run: npm run lint
- name: style
if: ${{ always() }}
run: npm run format:check
codecov: # Send only a single coverage report per run
needs: build
timeout-minutes: 15
env:
CI: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js lts
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: npm
- run: npm ci
- name: test
run: npm run test -- --coverage
- name: codecov
uses: codecov/codecov-action@v3