Skip to content

chore(deps): update dependency @types/node to v20.11.30 #548

chore(deps): update dependency @types/node to v20.11.30

chore(deps): update dependency @types/node to v20.11.30 #548

Workflow file for this run

name: PR CI build
on:
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
NODE_OPTIONS: --max-old-space-size=4096
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
# Beginning of yarn setup
- name: use node.js 20.x
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 20.x
registry-url: https://registry.npmjs.org/ # Needed for auth
- name: cache all node_modules
id: cache-modules
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock', '**/package.json') }}
- name: find location of global yarn cache
id: yarn-cache
if: steps.cache-modules.outputs.cache-hit != 'true'
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- name: cache global yarn cache
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4
if: steps.cache-modules.outputs.cache-hit != 'true'
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: yarn install
run: yarn install --immutable
# End of yarn setup
- name: knip
run: yarn knip
- name: lint
run: yarn backstage-cli repo lint
- name: deprecations
run: yarn backstage-cli repo list-deprecations
- name: type checking and declarations
run: yarn tsc:full
- name: tests
run: yarn backstage-cli repo test
- name: config check
run: |
yarn backstage-cli config:check --lax --strict
yarn backstage-cli config:check --lax --strict --config app-config.yaml --config app-config.heroku.yaml
- name: docker build
env:
DOCKER_BUILDKIT: 1
run: docker build -t example .