chore(deps): update actions/checkout action to v4 #3031
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################## | |
# 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 |