Bump micromatch from 4.0.7 to 4.0.8 #14
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: Node | |
on: | |
- push | |
- pull_request | |
jobs: | |
frontend: | |
name: Frontend tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/[email protected] | |
with: | |
php-version: '8.1' | |
extensions: mbstring, dom, intl, iconv | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: Generate documentation | |
run: bin/daux generate | |
- name: Generate documentation in single file | |
run: bin/daux generate --format=html-file --destination=static-single | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: '20.x' | |
cache: 'yarn' | |
- name: yarn install | |
run: yarn install | |
- name: yarn build | |
run: yarn build | |
- name: yarn test | |
run: yarn test |