Skip to content

fix husky??

fix husky?? #49

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Spacebar Contributors <https://spacebar.chat>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
name: Build and Test
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Using GitHub's Checkout action
uses: actions/checkout@v3
- name: REUSE Compliance Check
uses: fsfe/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npx eslint .
- run: npx prettier --check .
- run: npm run build --if-present
- run: npm run test --if-present