docs: Mention translation component in migration (#19) #89
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up nodejs v16 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: npm install | |
- name: Build docs | |
run: npm run build |