fix(deps): bump locutus from 2.0.16 to 2.0.29 #468
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: tests | |
on: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: JavaScript tests | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14 | |
- name: Installing dependencies | |
run: npm ci | |
- name: Execute gulp build | |
run: gulp build | |
- name: Execute bundlewatch | |
run: npm run bundlewatch |