Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

History rewrite to exclude the app/target app/dist and app/node_modules #23

Merged
merged 27 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
36f62d0
delete everythign
Nov 29, 2023
5f4951e
issue-46062444 create hello world app
Nov 29, 2023
246613e
nav and summary bar
Nov 29, 2023
77d32e1
integrate tailwind
Nov 29, 2023
3abc3dc
remove main.rs file
Nov 29, 2023
0065f82
issue-4690391 refactor models out of summary.r
Nov 30, 2023
c52549d
reposition and rename Item->SummaryItem in file for legibility
Nov 30, 2023
e79b966
issue-46190391 refactor summary page components for testing
Nov 30, 2023
f9ad357
add a fake test and fix linting errors
Nov 30, 2023
2a2e5ad
issue-46190391 add workflow
Nov 30, 2023
1ce2c48
issue-46190391 target leptos-reset branch for now
Nov 30, 2023
f043e0b
issue-46190391 bug fix
Nov 30, 2023
8fea89c
issue-46190391 bug fix
Nov 30, 2023
d25c5bd
Accomplish e2e testing with CI integration
Nov 30, 2023
fef72b6
rework action
Nov 30, 2023
41d1844
github action target main
Dec 1, 2023
1749dc9
modify gitignore
Dec 1, 2023
971cab7
Add nix flake support
trevorbernard Dec 1, 2023
2e9c6da
Add support for shell.nix
trevorbernard Dec 2, 2023
9c99ea5
Make account summary page
Dec 4, 2023
b20e38a
issue-45790869 support loading of fixture data from url param f=true
Dec 4, 2023
980755f
issue-45790869 add some baseline snapshot tests
Dec 4, 2023
4405260
issue-45790869 make more granular
Dec 4, 2023
bd2ef3d
change the file names to match those in CI pipeline
Dec 4, 2023
d49590f
Upload report
n1tranquilla Dec 5, 2023
2aa0533
Remove fixture testing for now
n1tranquilla Dec 5, 2023
f20eb45
use real public key
n1tranquilla Dec 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions .eslintignore

This file was deleted.

42 changes: 0 additions & 42 deletions .eslintrc.cjs

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/node.js.yml

This file was deleted.

46 changes: 46 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Rust

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Build
working-directory: app/
run: |
cargo build
cargo install trunk
- name: Run tests
working-directory: app/
run: cargo test --verbose
- name: Npm install
working-directory: app/
run: npm install
- name: Install playwright deps
working-directory: app/
run: npx playwright install --with-deps
- name: Run playwright tests
working-directory: app/
run: |
rustup target add wasm32-unknown-unknown
npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
50 changes: 7 additions & 43 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,43 +1,7 @@
# Build
/dist
/lib
/lib-types
/server

# Development
node_modules
*.local
playwright-report/
test-results/

# Cache
.cache
.mf
.rollup.cache
tsconfig.tsbuildinfo

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# Editor
.vscode/*
!.vscode/launch.json
!.vscode/*.code-snippets

.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# Yarn
.yarn/*
!.yarn/releases
app/dist
app/target
app/node_modules/
app/test-results/
app/playwright-report/
app/blob-report/
app/playwright/.cache/
38 changes: 0 additions & 38 deletions .prettierignore

This file was deleted.

24 changes: 0 additions & 24 deletions .vscode/launch.json

This file was deleted.

36 changes: 0 additions & 36 deletions .vscode/qwik-city.code-snippets

This file was deleted.

78 changes: 0 additions & 78 deletions .vscode/qwik.code-snippets

This file was deleted.

Loading
Loading