Skip to content

Bump the minor-patch group across 1 directory with 3 updates #238

Bump the minor-patch group across 1 directory with 3 updates

Bump the minor-patch group across 1 directory with 3 updates #238

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
permissions:
contents: read
jobs:
lint-source:
name: Lint/build code
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3
- name: Setup node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint:check
- name: Run build
run: npm run build
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3
- name: Setup node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Generate provenance statement
run: DEBUG=* npm run generate --workspace=packages/cli -- README.md -o ../../provenance-statement.json
- name: Upload artifact
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: provenance-statement.json
path: provenance-statement.json