bitburner-src/.github/workflows/ci.yml

70 lines
1.6 KiB
YAML
Raw Normal View History

name: CI
on:
# Triggers the workflow on push events and pull requests but only for the dev branch
push:
2022-03-21 03:02:36 +01:00
branches: [dev]
pull_request:
branches: [dev]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
2024-08-15 22:08:21 +02:00
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
2024-08-15 22:08:21 +02:00
node-version: 20
2022-03-21 03:02:36 +01:00
cache: "npm"
- name: Install npm dependencies
run: npm ci
- name: Build the production app
run: npm run build
lint:
name: Lint
runs-on: ubuntu-latest
steps:
2024-08-15 22:08:21 +02:00
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
2024-08-15 22:08:21 +02:00
node-version: 20
2022-03-21 03:02:36 +01:00
cache: "npm"
- name: Install npm dependencies
run: npm ci
- name: Run linter
run: npm run lint:report
2022-03-21 03:02:36 +01:00
prettier:
2022-03-21 03:03:11 +01:00
name: Prettier
2022-03-21 03:02:36 +01:00
runs-on: ubuntu-latest
steps:
2024-08-15 22:08:21 +02:00
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
2022-03-21 03:02:36 +01:00
with:
2024-08-15 22:08:21 +02:00
node-version: 20
2022-03-21 03:02:36 +01:00
cache: "npm"
- name: Install npm dependencies
run: npm ci
- name: Run prettier check
run: npm run format:report
test:
name: Test
runs-on: ubuntu-latest
steps:
2024-08-15 22:08:21 +02:00
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
2024-08-15 22:08:21 +02:00
node-version: 20
2022-03-21 03:02:36 +01:00
cache: "npm"
- name: Install npm dependencies
run: npm ci
2022-01-17 08:28:26 +01:00
- name: Run tests
run: npm run test