We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15f49eb commit 5ebe9eeCopy full SHA for 5ebe9ee
.github/workflows/test.yml
@@ -116,6 +116,19 @@ jobs:
116
coverage: none
117
tools: cs2pr
118
119
+ # This action also handles the caching of the dependencies.
120
+ - name: Set up node and enable caching of dependencies
121
+ uses: actions/setup-node@v3
122
+ with:
123
+ node-version: '20'
124
+
125
+ - name: Install external tools used in tests
126
+ run: >
127
+ npm install -g --fund false
128
+ csslint
129
+ eslint
130
+ jshint
131
132
# Install dependencies and handle caching in one go.
133
# @link https://github.com/marketplace/actions/install-composer-dependencies
134
- name: Install Composer dependencies - normal
0 commit comments