Bump terser from 5.46.0 to 5.46.1 #2126
Workflow file for this run
This file contains hidden or 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: Build | |
| on: [push, pull_request] | |
| env: | |
| CI: true | |
| jobs: | |
| run: | |
| name: Node ${{ matrix.node }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [20] | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| - name: Set Node.js version | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: node --version | |
| - run: npm --version | |
| - name: Install NPM dependencies | |
| run: npm ci | |
| - name: Lint CSS | |
| run: npm run lint | |
| - name: Compile CSS | |
| run: node build-css.js | |
| - name: Process JS | |
| run: node build-js.js | |
| - name: Build Zip | |
| run: node build-zip.js |