chore(deps): lock file maintenance #651
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Build and Test | |
on: | |
push: | |
branches: | |
- "**" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build and test (Node ${{ matrix.node.name }}) | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') || github.event_name == 'workflow_dispatch' }} | |
permissions: | |
contents: read | |
packages: read | |
strategy: | |
matrix: | |
node: | |
- { name: Current, version: current } | |
- { name: LTS, version: lts/* } | |
steps: | |
- name: Build and test | |
uses: myrotvorets/composite-actions/build-test-nodejs@master | |
with: | |
node-version: ${{ matrix.node.version }} | |
registry-url: https://npm.pkg.github.com | |
lint: | |
name: Check code style | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') || github.event_name == 'workflow_dispatch' }} | |
permissions: | |
contents: read | |
packages: read | |
env: | |
NO_UPDATE_NOTIFIER: 'true' | |
NPM_CONFIG_FUND: '0' | |
NPM_CONFIG_AUDIT: '0' | |
SUPPRESS_SUPPORT: '1' | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Node.js environment | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: 'lts/*' | |
registry-url: https://npm.pkg.github.com | |
cache: npm | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run postinstall scripts | |
run: npm rebuild && npm run prepare --if-present | |
- name: Check code style | |
run: npm run lint | |
typecheck: | |
name: Check types | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') || github.event_name == 'workflow_dispatch' }} | |
permissions: | |
contents: read | |
packages: read | |
env: | |
NO_UPDATE_NOTIFIER: 'true' | |
NPM_CONFIG_FUND: '0' | |
NPM_CONFIG_AUDIT: '0' | |
SUPPRESS_SUPPORT: '1' | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Node.js environment | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: 'lts/*' | |
registry-url: https://npm.pkg.github.com | |
cache: npm | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check types | |
run: npm run typecheck |