Skip to content

Bump get-func-name from 2.0.0 to 2.0.2 #115

Bump get-func-name from 2.0.0 to 2.0.2

Bump get-func-name from 2.0.0 to 2.0.2 #115

Workflow file for this run

name: Trunk - Pull Request
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: false
jobs:
trunk_check:
name: Trunk Check Runner
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Cache node modules
id: cache-yarn
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: |
~/.cache/yarn
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', '**/package.json') }}
restore-keys: |
${{ runner.os }}-yarn-
- if: steps.cache-yarn.outputs.cache-hit != 'true'
name: 📦 Install Dependencies
run: yarn install --frozen-lockfile
- name: Trunk Check
uses: trunk-io/trunk-action@v1
with:
trunk-token: ${{ secrets.TRUNK_TOKEN }}
on:
[pull_request]
# branches:
# - main
# - dev