cloudcmd/.github/workflows/nodejs.yml
2026-06-03 18:46:19 +03:00

60 lines
1.6 KiB
YAML

name: Node CI
on:
- push
jobs:
build:
runs-on: ubuntu-latest
env:
NAME: cloudcmd
TYPOS_AI_KEY: ${{ secrets.TYPOS_AI_KEY }}
TYPOS_AI_RUN: 1
strategy:
matrix:
node-version:
- 22.x
- 24.x
- 26.x
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install Redrun
run: bun i redrun typos.ai palabra -g --no-save
- name: Install
run: bun i --no-save
- name: Lint
run: redrun fix:lint
- uses: actions/cache@v5
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Typos Install
run: palabra i typos
- name: Typos
run: typos.ai
- name: Commit fixes
uses: EndBug/add-and-commit@v10
continue-on-error: true
with:
message: "chore: ${{ env.NAME }}: actions: lint ☘️"
- name: Build
run: redrun build
- name: Test
run: redrun test
- name: Coverage
run: redrun coverage coverage:report
- name: Coveralls
uses: coverallsapp/github-action@v2
continue-on-error: true
with:
github-token: ${{ secrets.GITHUB_TOKEN }}