Merge branch 'main' of github.com:spacebarchat/docs-bot into main #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |