Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/.vscode
/.yarn
/bin
/bundles
.pnp.js
8 changes: 4 additions & 4 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- uses: actions/checkout@master

- name: "Use Node.js 10.x"
- name: "Use Node.js 14.x"
uses: actions/setup-node@v1
with:
node-version: '10.x'
node-version: "14.x"

- name: 'Check that the Yarn files don''t change on new installs (fix w/ "yarn install")'
run: |
Expand All @@ -41,7 +41,7 @@ jobs:
github.event.pull_request != ''
- name: "Check that the code is formatted"
run: |
yarn format:files --chec
yarn format:files --check

acceptance:
strategy:
Expand All @@ -50,6 +50,7 @@ jobs:
node:
- 10
- 12
- 14
platform:
- ubuntu-latest
- windows-latest
Expand All @@ -68,7 +69,6 @@ jobs:

- name: "Build the plugin"
run: |
set -e
yarn build

- name: "Run the integration tests"
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
/bundles
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v14.5.0
Loading