Fetch the renamed file with the updated file format for the tile layers. #1416
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: CI on macOS | |
on: | |
push: | |
branches: | |
- '**' # matches every branch | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-13] | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # for electron-builder | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 20.16.0 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20.16.0 | |
- name: npm ci | |
run: npm ci | |
- name: npm run lint:ng | |
run: npm run lint:ng | |
- name: npm run lint:script | |
run: npm run lint:script | |
- name: npm run test:unit:ng | |
run: npm run test:unit:ng | |
- name: npm run test:unit:em:main | |
run: npm run test:unit:em:main | |
- name: npm run test:unit:em:renderer | |
run: npm run test:unit:em:renderer | |
- name: npm run test:package | |
run: npm run test:package |