Skip to content

Use specific background textures #4

Use specific background textures

Use specific background textures #4

Workflow file for this run

name: Validate code and style
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: NPM Install
run: npm install
- name: Lint
run: npm run lint
check-style:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: NPM Install
run: npm install
- name: Check style
run: npm run checkstyle
compile:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: NPM Install
run: npm install
- name: Compile
run: npm run build --workspaces