Skip to content

feat: info, workspace:* range and type support #3

feat: info, workspace:* range and type support

feat: info, workspace:* range and type support #3

Workflow file for this run

# @see: https://github.com/marketplace/actions/setup-node-js-environment
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CI: "true"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ "22" ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm version
- run: npm install --ignore-scripts
- run: npm run ci