Skip to content

Bump actions/checkout from 6.0.2 to 7.0.0 #67

Bump actions/checkout from 6.0.2 to 7.0.0

Bump actions/checkout from 6.0.2 to 7.0.0 #67

Workflow file for this run

name: examples
on:
push:
branches:
- main
paths:
- '.github/workflows/examples.yml'
- 'examples/**'
- '!**/*.md'
pull_request:
paths:
- '.github/workflows/examples.yml'
- 'examples/**'
- '!**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
tests:
if: |
${{ github.event_name == 'pull_request' }}
timeout-minutes: 15
runs-on: ubuntu-latest
name: 'Test examples'
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
with:
egress-policy: audit
- name: Checkout csolution-rpc repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm ci
working-directory: examples/vscode-extension-client
- name: Run linter
run: npm run lint
working-directory: examples/vscode-extension-client