Skip to content

fix: add registration image and i18n #64

fix: add registration image and i18n

fix: add registration image and i18n #64

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the develop branch
pull_request:
branches:
- "*" # matches every branch that doesn't contain a '/'
- "*/*" # matches every branch containing a single '/'
- "**" # matches every branch
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# env:
# GITHUB_PR_NUMBER: ${{ github.event.pull_request.number }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false
- uses: actions/checkout@master
- name: copy file
uses: canastro/copy-file-action@master
with:
source: ".env.github"
target: ".env.local"
- name: Pnpm install
run: pnpm install
- name: Pnpm lint
run: pnpm run lint
- name: Pnpm typecheck
run: pnpm run typecheck