[ImgBot] Optimize images #24
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: CI | |
on: | |
- push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2.2.2 | |
with: | |
version: 8 | |
run_install: | | |
- args: [--frozen-lockfile] | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Clean | |
run: pnpm recursive run clean | |
env: | |
CI: true | |
- name: Build | |
run: pnpm recursive run build | |
env: | |
CI: true | |
- name: Begin Tests | |
run: pnpm recursive run test | |
env: | |
CI: true |