This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-helpers/.gitea/workflows/tests.yaml

24 lines
454 B
YAML
Raw Normal View History

2023-03-29 17:48:29 +00:00
name: Node.js CI
on:
push:
2023-03-29 17:48:46 +00:00
branches: [master]
2023-03-29 17:48:29 +00:00
pull_request:
2023-03-29 17:48:46 +00:00
branches: [master]
2023-03-29 17:48:29 +00:00
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm run build --if-present
- run: npm test