pihelper/.github/workflows/test.yml
Renovate Bot 9e07cb16c8
Some checks are pending
Build / build (pull_request) Successful in 32s
Enable Auto Merge / auto-merge (pull_request) Has been skipped
Publish Docker image / Push Docker image to GitHub Packages (push) Waiting to run
Update actions/checkout action to v4
2024-07-01 16:19:40 +00:00

16 lines
331 B
YAML

name: Build
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build