build(deps-dev): bump eslint-plugin-mdx from 2.0.5 to 2.2.0 #128
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: Pull Request Checks | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
- name: Install NPM packages | |
run: npm ci | |
- name: Restore Cache | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
node_modules/.cache | |
key: tests-${{ hashFiles('**/package-lock.json') }}- | |
restore-keys: | | |
tests-${{ hashFiles('**/package-lock.json') }}- | |
enableCrossOsArchive: true | |
- name: Run Linting | |
run: npx turbo lint | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
- name: Save Cache | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
node_modules/.cache | |
key: tests-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('node_modules/.cache') }} | |
enableCrossOsArchive: true | |
unit-tests: | |
name: Tests on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
- name: Install NPM packages | |
run: npm ci | |
- name: Restore Cache | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
node_modules/.cache | |
key: tests-${{ hashFiles('**/package-lock.json') }}- | |
restore-keys: | | |
tests-${{ hashFiles('**/package-lock.json') }}- | |
enableCrossOsArchive: true | |
- name: Run Unit Tests | |
run: npx turbo test:ci | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
- name: Save Cache | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
node_modules/.cache | |
key: tests-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('node_modules/.cache') }} | |
enableCrossOsArchive: true | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
- name: Install NPM packages | |
run: npm ci | |
- name: Restore Cache | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
.next/cache | |
node_modules/.cache | |
key: build-${{ hashFiles('**/package-lock.json') }}- | |
restore-keys: | | |
build-${{ hashFiles('**/package-lock.json') }}- | |
enableCrossOsArchive: true | |
- name: Build Next.js | |
run: npx turbo build | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
- name: Save Cache | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
.next/cache | |
node_modules/.cache | |
key: build-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('node_modules/.cache') }} | |
enableCrossOsArchive: true |