✨ Set icons and metadata to Windows executables #285
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: Test suite | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x] | |
arch: [x64] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install necessary dependencies and link package | |
working-directory: ./ | |
run: | | |
npm ci | |
npm link | |
- name: Install spec dependencies | |
working-directory: ./spec | |
run: npm ci | |
- name: Run spec | |
working-directory: ./spec | |
run: npm run test |