ci: bump postcss from 8.5.4 to 8.5.5 #3138
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: CI | |
on: | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run linters | |
run: npm run lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
browser: | |
- 'chrome' | |
# - 'firefox' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Bypass Cloudflare for GitHub Action | |
uses: xiaotianxt/[email protected] | |
with: | |
cf_zone_id: ${{ secrets.CF_ZONE_ID }} | |
cf_api_token: ${{ secrets.CF_API_TOKEN }} | |
- name: Run Cypress | |
uses: cypress-io/github-action@v6 | |
with: | |
build: npm run build | |
start: npm start | |
browser: ${{ matrix.browser }} | |
- uses: actions/upload-artifact@master | |
with: | |
name: screenshots | |
path: cypress/screenshots | |
if: failure() | |
- uses: actions/upload-artifact@master | |
with: | |
name: videos | |
path: cypress/videos |