Skip to content

Bump the npm-development group across 1 directory with 3 updates #12

Bump the npm-development group across 1 directory with 3 updates

Bump the npm-development group across 1 directory with 3 updates #12

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: pnpm
- name: Install Dependencies
id: pnpm
run: pnpm install
- name: Check Format
id: pnpm-format-check
run: pnpm format:check
- name: Lint
id: pnpm-lint
run: pnpm lint
- name: Test
id: pnpm-ci-test
run: pnpm ci-test
test-action:
name: GitHub Actions Test
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Test Local Action
id: test-action
uses: ./
with:
repo-token: f72ef953-afe8-4c22-9d92-8de22c24ee92
- name: Print Output
id: output
run: echo "${{ steps.test-action.outputs.branch }}"