Skip to content

Bump prettier from 3.0.0 to 3.0.1 #625

Bump prettier from 3.0.0 to 3.0.1

Bump prettier from 3.0.0 to 3.0.1 #625

Workflow file for this run

name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
branches-ignore:
- 'dependabot/**'
pull_request_target:
branches:
- 'dependabot/**'
permissions:
contents: read
pull-requests: write
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
npm install
- run: |
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
current-stats-json-path: ./__tests__/__mocks__/new-stats-with-chunks.json
base-stats-json-path: ./__tests__/__mocks__/old-stats-with-chunks.json
github-token: ${{ secrets.GITHUB_TOKEN }}
title: With chunk and module information
- uses: actions/checkout@v3
- uses: ./
with:
current-stats-json-path: ./__tests__/__mocks__/new-stats-assets.json
base-stats-json-path: ./__tests__/__mocks__/old-stats-assets.json
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: ./
with:
current-stats-json-path: ./__tests__/__mocks__/old-stats-assets.json
base-stats-json-path: ./__tests__/__mocks__/new-stats-assets.json
github-token: ${{ secrets.GITHUB_TOKEN }}
title: Flipped around
- uses: ./
with:
current-stats-json-path: ./__tests__/__mocks__/non-existent.json
base-stats-json-path: ./__tests__/__mocks__/non-existent.json
github-token: ${{ secrets.GITHUB_TOKEN }}
title: Non existent
- uses: ./
with:
current-stats-json-path: ./__tests__/__mocks__/old-stats-assets.json
base-stats-json-path: ./__tests__/__mocks__/old-stats-assets.json
github-token: ${{ secrets.GITHUB_TOKEN }}
title: No changes