Skip to content

docs: css-position-stickyの記事追加 #157

docs: css-position-stickyの記事追加

docs: css-position-stickyの記事追加 #157

Workflow file for this run

name: exec-tests
on:
push:
jobs:
status-check:
runs-on: ubuntu-latest
env:
WEBSITE_URL: ${{ secrets.WEBSITE_URL }}
GA_MEASUREMENT_ID: ${{ secrets.GA_MEASUREMENT_ID }}
NEXT_PUBLIC_ALGOLIA_APP_ID: ${{ secrets.NEXT_PUBLIC_ALGOLIA_APP_ID }}
NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY: ${{ secrets.NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY }}
NEXT_PUBLIC_ALGOLIA_INDEX_NAME: ${{ secrets.NEXT_PUBLIC_ALGOLIA_INDEX_NAME }}
ALGOLIA_ADMIN_API_KEY: ${{ secrets.ALGOLIA_ADMIN_API_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Get Cache Dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm ci
- name: Create avif images dir
run: mkdir tmp
- name: Build
run: npm run build
env:
NODE_OPTIONS: '--max_old_space_size=4096'
- name: Check by linter
run: npm run lint
- name: Check by TypeScript Compiler
run: npm run typecheck
- name: Run Tests
run: npm run test