Skip to content

chore(deps): bump the npm group across 1 directory with 7 updates #275

chore(deps): bump the npm group across 1 directory with 7 updates

chore(deps): bump the npm group across 1 directory with 7 updates #275

Workflow file for this run

name: main
on:
push:
branches:
- master
tags:
- "**"
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v4
with:
node-version-file: ".tool-versions"
cache: "npm"
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Format
run: npm run fmtcheck
# - name: "check for uncommitted changes"
# # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed.
# run: |
# git diff --exit-code --stat -- . ':!node_modules' \
# || (echo "##[error] found changed files after build. please 'npm run build && npm run fmt'" \
# "and check in all changes" \
# && exit 1)
integration:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v4
with:
node-version-file: ".tool-versions"
cache: "npm"
- name: Diffset
id: diffset
uses: ./ # Uses an action in the root directory
with:
md_files: "*.md"
- name: Print Diffset
run: ls -al ${{ steps.diffset.outputs.files }}
- name: Print MD Files
if: steps.diffset.outputs.md_files
run: echo "Files changed were ${{ steps.diffset.outputs.md_files }}"
- name: Print Rust Files
if: steps.diffset.outputs.rust_files
run: echo "Files changed were ${{ steps.diffset.outputs.rust_files }}"