Skip to content

Commit

Permalink
chore(deps): update dependency prettier to v3 (#64)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ivanlytovka <ivanlytovka@gmail.com>
  • Loading branch information
renovate[bot] and lytovka committed Oct 15, 2023
1 parent 7d0fdbc commit ab9bd2c
Show file tree
Hide file tree
Showing 6 changed files with 302 additions and 19 deletions.
39 changes: 35 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,43 @@
name: Pull Request
on: pull_request
jobs:
build:
lint:
name: ESLint
runs-on: ubuntu-latest
concurrency:
group: ${{ matrix.node }}-${{ github.head_ref }}
cancel-in-progress: true
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Grab node version
run: echo NVMRC=`cat .nvmrc` >> $GITHUB_ENV
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NVMRC }}
- name: Install deps
run: npm ci
- name: Lint
run: npm run lint

prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Grab node version
run: echo NVMRC=`cat .nvmrc` >> $GITHUB_ENV
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NVMRC }}
- name: Install deps
run: npm ci
- name: Prettier
run: npm run format:check

build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 19]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
release:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-release
cancel-in-progress: true
group: ${{ github.workflow }}-release
cancel-in-progress: true
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*.md
Loading

0 comments on commit ab9bd2c

Please sign in to comment.