Skip to content

Move npm package to @twexapi-dev scope. #3

Move npm package to @twexapi-dev scope.

Move npm package to @twexapi-dev scope. #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
package:
runs-on: ubuntu-24.04
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
- name: Install
run: npm ci --ignore-scripts
- name: Test
run: npm test
- name: Lint
run: npm run lint
- name: Inspect package
run: npm pack --dry-run