Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
CI: add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
liushuyu committed Aug 5, 2022
1 parent 4b07fdb commit 63d9f1b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build Check

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: 16.x
- uses: actions/checkout@v2
- name: Build
run: yarn && yarn build
- name: Lint
run: yarn lint
1 change: 1 addition & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import "./assets/main.css";
const app = createApp(App);

const i18n = createI18n({
legacy: false,
locale: "en",
fallbackLocale: "en",
});
Expand Down

0 comments on commit 63d9f1b

Please sign in to comment.