Skip to content

Commit 1c5335e

Browse files
authoredAug 11, 2021
feat: failures (flybywiresim#5359)
1 parent 50447b9 commit 1c5335e

File tree

73 files changed

+1811
-123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1811
-123
lines changed
 

‎.github/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@
164164
1. [MCDU] DEST EFOB and ALT DEST EFOB amber coloring fixed - @erso44 (Ersin Karakilic)
165165
1. [FCU] Added LVAR for selected speed and only fill active LVAR for VS or FPA mode
166166
1. [MODEL] Removed unused material to fix potential crash to desktop - @aguther (Andreas Guther)
167-
1. [HYD] Udpated fix for autobrake rotating knob type controllers - @Crocket63 (crocket)
167+
1. [ARCH] Failures are supported - @davidwalschots (David Walschots)
168+
1. [HYD] Updated fix for autobrake rotating knob type controllers - @Crocket63 (crocket)
168169
1. [MODEL] Fix Cockpit Door Video Toggle - @sidnov (Sid)
169170

170171
## 0.6.0

‎.github/workflows/pr.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: lint-rust.sh
2222
run: |
2323
./scripts/dev-env/run.sh scripts/lint-rust.sh
24-
test:
24+
test-rust:
2525
runs-on: ubuntu-latest
2626
if: github.event.pull_request.draft == false
2727
steps:
@@ -30,6 +30,16 @@ jobs:
3030
- name: test-rust.sh
3131
run: |
3232
./scripts/dev-env/run.sh scripts/test-rust.sh
33+
test-js:
34+
runs-on: ubuntu-latest
35+
if: github.event.pull_request.draft == false
36+
steps:
37+
- name: Checkout source
38+
uses: actions/checkout@v2
39+
- name: npm install
40+
run: npm install --no-optional
41+
- name: npm test
42+
run: npm test
3343
build:
3444
runs-on: ubuntu-latest
3545
if: github.event.pull_request.draft == false

0 commit comments

Comments
 (0)
Please sign in to comment.