Skip to content

chore(deps): update actions/checkout action to v4 #2211

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

chore(deps): update actions/checkout action to v4 #2211

Workflow file for this run

##############################################
# FILE GENERATED AUTOMATICALLY FROM TERRAFORM
# THIS FILE SHOULD NOT BE EDITED BY HAND
##############################################
name: Build package
on:
pull_request:
push:
branches:
- master
- 'renovate/**'
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
env:
HUSKY_SKIP_HOOKS: 1
HUSKY: 0
strategy:
matrix:
node: [12, 14, 16]
os: [ubuntu-latest, macos-latest]
name: Building on ${{ matrix.os }} and node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4.1.5
- name: Setup node
uses: actions/setup-node@v3.8.2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run build