Skip to content

Bump js-yaml from 4.1.1 to 4.2.0 #174

Bump js-yaml from 4.1.1 to 4.2.0

Bump js-yaml from 4.1.1 to 4.2.0 #174

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
env:
node_version: 20
jobs:
lint-and-build:
name: Lint & Build (Dev)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
- name: Cache dependencies
uses: actions/cache@v4
with:
path: .npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
- name: Install dependencies
run: npm ci --cache .npm --prefer-offline
- name: Lint
run: npm run lint
- name: Build (development)
run: npm run build
env:
NODE_ENV: development