Bump prettier from 2.8.8 to 3.2.5 #413
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: "CI" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
# For auto-approving/merging PRs. | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
check: | |
name: "Checks and Tests" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [14.x, 16.x, 18.x] | |
steps: | |
- name: "Run NPM Basic Checks" | |
uses: SkynetLabs/.github/.github/actions/npm-basic-checks@master | |
with: | |
node-version: ${{ matrix.node-version }} | |
build: true | |
# Auto-merge Dependabot PRs. Requires also `.github/.kodiak.toml`. | |
# See https://hackmd.io/@SkynetLabs/ryFfInNXc. | |
dependabot: | |
name: "Approve and Merge Dependabot PRs" | |
# - Must be a PR. | |
# - The latest actor must be Dependabot. This prevents other users from | |
# sneaking in changes into the PR. | |
if: ${{ github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Run Auto-Approval and Auto-Merge" | |
uses: SkynetLabs/.github/.github/actions/dependabot-approve-and-merge@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |