This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
Prefer Nix flake then update dprint and typescript with the new nixpkgs #54
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: Linters | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- 'dist/**' | |
- 'package-lock.json' | |
pull_request: | |
paths-ignore: | |
- 'dist/**' | |
- 'package-lock.json' | |
jobs: | |
dprint: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dprint/[email protected] | |
with: | |
# Keep same version as used in *.nix | |
dprint-version: '0.40.2' | |
typos: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Keep same version as used in *.nix | |
- uses: crate-ci/[email protected] | |
with: | |
files: | | |
. | |
.github | |
.vscode |