Skip to content

chore(deps-dev): bump the npm-development group across 1 directory with 5 updates #36

chore(deps-dev): bump the npm-development group across 1 directory with 5 updates

chore(deps-dev): bump the npm-development group across 1 directory with 5 updates #36

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
lint:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
# Full git history is needed to get a proper list of changed files
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@b807e99ddd37e444d189cfd2c2ca1274d8ae8ef1 # v7
env:
VALIDATE_ALL_CODEBASE:
${{ github.event_name == 'push' && github.ref == 'refs/heads/main'
}}
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Enable/disable specific linters
VALIDATE_TYPESCRIPT_ES: true
VALIDATE_JAVASCRIPT_ES: true
VALIDATE_YAML: true
VALIDATE_JSON: true
VALIDATE_MARKDOWN: true
# Use our configuration files
TYPESCRIPT_ES_CONFIG_FILE: eslint.config.js
MARKDOWN_CONFIG_FILE: .markdownlint.yml
YAML_CONFIG_FILE: .yamllint.yml
PRETTIER_CONFIG_FILE: .prettierrc.yml
# Don't validate generated files
FILTER_REGEX_EXCLUDE: dist/.*
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Node.js
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
with:
node-version-file: '.node-version'
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
build:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Node.js
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
with:
node-version-file: '.node-version'
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Upload artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: dist
path: dist/
retention-days: 5