Skip to content

chore(deps): update actions/checkout action to v4.2.2 #4045

chore(deps): update actions/checkout action to v4.2.2

chore(deps): update actions/checkout action to v4.2.2 #4045

Workflow file for this run

name: Build configs
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Trigger build
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20]
config: ["configs/extension.js", "configs/module.js"]
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: |
npm install
- run: node --unhandled-rejections=strict fern.js build ${{ matrix.config }}