Skip to content

i18n: update translations (#91) #3387

i18n: update translations (#91)

i18n: update translations (#91) #3387

Workflow file for this run

name: Deploy
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
- id: cache
name: Yarn Cache Dir
run: echo "value=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Restore Lockfile
uses: actions/cache@v3
with:
path: yarn.lock
key: yarn-lock-${{ github.sha }}
restore-keys: yarn-lock-
- name: Restore Cache
uses: actions/cache@v3
with:
path: ${{ steps.cache.outputs.value }}
key: yarn-cache-${{ github.sha }}
restore-keys: yarn-cache-
- name: Install
run: yarn
- name: Build
run: yarn build