Skip to content

Use optional chaining to shorten the code #4

Use optional chaining to shorten the code

Use optional chaining to shorten the code #4

Workflow file for this run

name: Check
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Node.js setup
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build