Skip to content

Commit

Permalink
Create GitHub Action for AttributeError in MSVSProject
Browse files Browse the repository at this point in the history
Add a GitHub Action to test #2058
AttributeError: 'MSVSProject' object has no attribute 'items'
#2058 (comment)
@djD-REK Your review please.
  • Loading branch information
cclauss authored May 2, 2020
1 parent 5d06460 commit 36d89af
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/MSVSProject_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# AttributeError: 'MSVSProject' object has no attribute 'items' #2058
# https://github.com/nodejs/node-gyp/issues/2058#issuecomment-622660616
name: MSVSProject_test
on: [push, pull_request]
jobs:
MSVSProject_test:
runs-on: windows-latest
strategy:
fail-fast: false
max-parallel: 1
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-python@v1
- shell: powershell
run: |
npm install --global --production windows-build-tools
npm install -g node-gyp
Set-ExecutionPolicy Unrestricted
npm install -g screeps

0 comments on commit 36d89af

Please sign in to comment.