Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Elmer Bulthuis committed Nov 7, 2023
1 parent b6ff72b commit 63f0d6d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test-rs.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
on:
on:
- push
- pull_request

jobs:

test-unit:
runs-on: ubuntu-latest
container: rust:1.73-alpine3.17
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run build --workspaces
- run: npm test --workspaces
- run: npm run build
- run: npm test

test-lint:
runs-on: ubuntu-latest
container: node:18
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run lint --workspaces
- run: npm run lint

test-audit:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
commit-hooks=false
git-tag-version=false
workspaces=true
if-present=true
2 changes: 1 addition & 1 deletion goodrouter-rs/src/route_node/route_node_rc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ mod tests {

#[test]
fn route_node_permutations() {
let route_configs = vec!["/a", "/b/{x}", "/b/{x}/", "/b/{x}/c", "/b/{y}/d"];
let route_configs = ["/a", "/b/{x}", "/b/{x}/", "/b/{x}/c", "/b/{y}/d"];

let mut node_root_previous_rc = None;

Expand Down
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 63f0d6d

Please sign in to comment.