Update workflows

This commit is contained in:
WardPearce
2024-10-24 22:37:34 +13:00
parent 3e7849b76f
commit 0e573fca86
4 changed files with 4 additions and 10 deletions
+24
View File
@@ -0,0 +1,24 @@
name: Development Vite workflow
on:
pull_request:
branches: [ "main" ]
jobs:
web-check:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./materialious
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install modules
run: npm install
- name: Check linting
run: npm run check
- name: Attempt to build codebase
run: npm run build