chore(deps-dev): bump autoprefixer from 10.4.19 to 10.4.20 #124
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: Build test | |
on: | |
workflow_dispatch: # can be triggered manually | |
pull_request: # and for PRs | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
cache: npm | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
# creates a .nojekyll file in the out directory to tell GitHub Pages not to treat the site as a Jekyll project. | |
touch dist/.nojekyll |