Skip to content

[Fix] Url encoding in images, dont render undefined images #1037

[Fix] Url encoding in images, dont render undefined images

[Fix] Url encoding in images, dont render undefined images #1037

Workflow file for this run

name: Test
on:
push:
branches:
- master
# - development
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest] # windows-latest]
node: ['16', '18']
runs-on: ${{ matrix.platform }}
steps:
- name: Github Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install
run: |
yarn set version stable
yarn install --immutable --immutable-cache
- name: Lint
run: yarn lint
- name: Test
run: yarn test
env:
CI: true
NEXT_TELEMETRY_DISABLED: 1
- name: Build
run: yarn build
env:
NEXT_TELEMETRY_DISABLED: 1