Skip to content

⬆️ Bump get-func-name from 2.0.0 to 2.0.2 #442

⬆️ Bump get-func-name from 2.0.0 to 2.0.2

⬆️ Bump get-func-name from 2.0.0 to 2.0.2 #442

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup node ${{matrix.node-version}}
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{steps.yarn-cache-dir-path.outputs.dir}}
key: node-${{matrix.node-version}}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
node-${{matrix.node-version}}-yarn-
- name: Install dependencies
run: yarn --immutable
- name: Run CI
run: yarn ci