Skip to content

Translations update from Hosted Weblate #1370

Translations update from Hosted Weblate

Translations update from Hosted Weblate #1370

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn lint
- run: yarn build
- run: yarn test
- run: npx next export
- name: 'Upload Artifact'
uses: actions/upload-artifact@v2
with:
name: out
path: out/
retention-days: 1