fix(get): return promise to await correctly #75
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: e2e | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
e2e: | |
strategy: | |
matrix: | |
os: [macos-12, ubuntu-22.04, windows-2022] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3.3.0 | |
- uses: actions/setup-node@v3.6.0 | |
with: | |
node-version: "20.2.0" | |
cache: "npm" | |
- run: corepack enable | |
- run: npm ci | |
- run: npm run fmt | |
- run: npm run lnt | |
- run: npm link nw-builder | |
- run: npm run test:unit | |
- run: npm run test:e2e |