Update dependency unplugin-icons to ^0.18.0 #1471
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: | |
branches: [main] | |
pull_request: | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }}-testing | |
cancel-in-progress: true | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
max-parallel: 2 | |
matrix: | |
run_number: [1, 2, 3, 4, 5, 6, 7, 8] | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: Read package.json | |
id: package | |
uses: juliangruber/read-file-action@v1 | |
with: | |
path: ./package.json | |
# Ensures pnpm version is consistent and gets back the value to be used in pnpm setup action | |
- name: Get PNPM version | |
id: pnpm-version | |
uses: buffet-time/[email protected] | |
with: | |
# engines.pnpm | |
packageJson-engines-pnpm: '${{ fromJson(steps.package.outputs.content).engines.pnpm }}' | |
# packageManager | |
packageJson-packageManager: '${{ fromJson(steps.package.outputs.content).packageManager }}' | |
- name: Cache PNPM modules | |
uses: actions/cache@v3 | |
id: cache-modules | |
with: | |
path: | | |
~/.pnpm-store | |
node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: ${{ runner.os }}-node- | |
- uses: pnpm/[email protected] | |
with: | |
version: '${{ steps.pnpm-version.outputs.version }}' | |
- uses: actions/[email protected] | |
with: | |
# use the version found in `.nvmrc` | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Install `node_modules` | |
if: steps.cache-modules.outputs.cache-hit != 'true' | |
run: pnpm install | |
- name: Copy `.env.test` -> `.env` | |
run: cp .env.test .env | |
- name: Cache build | |
uses: actions/cache@v3 | |
id: cache-build | |
with: | |
path: .nuxt/ | |
key: ${{ runner.os }}-build-${{ hashFiles('**/.nuxt') }} | |
restore-keys: ${{ runner.os }}-build- | |
- name: Build the `.nuxt` directory | |
if: steps.cache-build.outputs.cache-hit != 'true' | |
run: pnpm build | |
- name: Tests | |
run: pnpm run test |