mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 17:14:50 +00:00
* chore: switch to namespace runners * fix: sudo * fix: move to medium runners for frontend * chore: bump all actions, remove old turbo cache * fix: bump frontend runners to large * fix: wrangler * fix: wrangler version, again * chore: namespace windows and mac runners * fix: revert tombi bump * chore: tweak caching
28 lines
701 B
YAML
28 lines
701 B
YAML
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
SQLX_OFFLINE: true
|
|
|
|
jobs:
|
|
typos:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- uses: crate-ci/typos@bee27e3a4fd1ea2111cf90ab89cd076c870fce14 # v1.48.0
|
|
|
|
# see <https://github.com/influxdata/datafusion-udf-wasm/pull/275>
|
|
tombi:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- uses: taiki-e/install-action@fd2f5e3d644b484055ebf4268f474c565f148f25 # v2.81.9
|
|
with:
|
|
tool: tombi
|
|
- run: tombi lint
|
|
- run: tombi fmt --check
|