Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

chore(deps-dev): bump prettier from 3.2.5 to 3.3.3 #1274

chore(deps-dev): bump prettier from 3.2.5 to 3.3.3

chore(deps-dev): bump prettier from 3.2.5 to 3.3.3 #1274

Workflow file for this run

name: ci
on:
push:
branches:
- master
- develop
tags-ignore:
- '**' #prevent double build on release tag
pull_request:
branches:
- '**'
jobs:
test:
name: Test
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
# FIXME: replace macos-12 with macos-latest when https://github.com/actions/setup-node/issues/1017 is resolved
os: [ubuntu-latest, windows-latest, macos-12]
runs-on: ${{ matrix.os }}
env:
HUSKY: 0
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
shell: bash
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Restore yarn cache
uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-node${{ matrix.node-version }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Build package
run: |
yarn build
- name: Test
run: |
yarn test:ci
Morty Proxy This is a proxified and sanitized view of the page, visit original site.