Skip to content

⬆️ Update lint and styleguide, run lint and prettier #84

⬆️ Update lint and styleguide, run lint and prettier

⬆️ Update lint and styleguide, run lint and prettier #84

Workflow file for this run

name: build
on:
workflow_call:
push:
branches-ignore:
- main
jobs:
build:
strategy:
matrix:
node-version: [20]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up node env
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Build the project
run: npm run build