Skip to content
Prev Previous commit
Next Next commit
chore: fix ci workflow
  • Loading branch information
eps1lon committed Apr 19, 2020
commit c953ad8ca3610cb6773b9cee9e8a39e5a0b7d985
13 changes: 7 additions & 6 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ jobs:
steps:
- uses: actions/checkout@master

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

- name: 'Check that the Yarn files don''t change on new installs (fix w/ "yarn install")'
- name: "Check that the Yarn files don't change on new installs (fix w/ `yarn install`)"
run: |
yarn --immutable --immutable-cache
env:
YARN_ENABLE_NETWORK: 0

- name: "Check that the cache files are consistent with their remote sources"
run: |
Expand All @@ -41,7 +39,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 @@ -66,6 +64,9 @@ jobs:
with:
version: ${{matrix.node}}.x

- name: "Install dependencies"
run: yarn

- name: "Build the plugin"
run: |
set -e
Expand Down