Fix liniting
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
name: Development Vite workflow
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
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
|
||||
Reference in New Issue
Block a user