Skip to content

rush update --full (#49986) #1161

rush update --full (#49986)

rush update --full (#49986) #1161

Workflow file for this run

name: Test and lint
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches: [main]
pull_request:
branches: ["**"]
jobs:
check:
name: Test and lint
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- name: Node setup
uses: actions/setup-node@v4
with:
node-version: "20.20.1"
- name: NPM v10
run: npm install -g npm@10 --registry=https://registry.npmjs.org
- name: Format check (dprint)
uses: dprint/check@v2.3
with:
config-path: dprint.json
dprint-version: "0.51.1"
- run: npm i
- run: npm run test
- run: npm run test-esm
- run: npm run lint