Skip to content

Commit

Permalink
Merge pull request #48 from owenmoogk/mantine-site
Browse files Browse the repository at this point in the history
Mantine site
  • Loading branch information
owenmoogk authored Jan 4, 2025
2 parents c12a608 + 152b109 commit c956cea
Show file tree
Hide file tree
Showing 46 changed files with 4,896 additions and 8,005 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci
run: yarn install --frozen-lockfile

- name: Compile Less to CSS
run: npx less-watch-compiler src/less src main.less --run-once

- name: Build
run: npm run build
run: yarn build

- name: Upload build artifacts
uses: actions/upload-pages-artifact@v3
Expand All @@ -52,16 +52,16 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci
run: yarn install --frozen-lockfile

- name: Compile Less to CSS
run: npx less-watch-compiler src/less src main.less --run-once

- name: Run ESLint
run: npm run lint
run: yarn lint

- name: Type Check
run: npx tsc --noEmit
run: yarn typecheck

deploy:
if: github.event_name == 'release'
Expand Down
1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export default [

// React rules
...reactPlugin.configs.recommended.rules,
"react/react-in-jsx-scope": "off",
"react/no-unescaped-entities": "off",
"react/jsx-closing-bracket-location": ["error", {
location: "line-aligned",
Expand Down
Loading

0 comments on commit c956cea

Please sign in to comment.