Fix missing symlinks in unzip #113
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: | |
include: | |
- { os: macos-12, shell: bash } | |
- { os: ubuntu-22.04, shell: bash } | |
- { os: windows-2022, shell: powershell } | |
# https://github.com/orgs/community/discussions/27143 | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: ${{ matrix.shell }} | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: "20.5.0" | |
cache: "npm" | |
- run: corepack enable | |
- run: npm i | |
- run: npm run ci:fmt | |
- run: npm run ci:lnt | |
- run: npm link nw-builder | |
- run: npm run test:unit | |
- run: npm run test:e2e |