Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
susumutomita committed Feb 3, 2024
1 parent f26ff98 commit 1879c4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Cache Node modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
1 change: 0 additions & 1 deletion packages/frontend/src/sindri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ async function pollForStatus(endpoint: string, timeout: number = 20 * 60) {
throw new Error(`Polling timed out after ${timeout} seconds.`);
}

// TOMLはReact Native環境で直接使用できないため、手動でパースする必要がある
function parseTOML(tomlString: string): Record<string, any> {
const result: Record<string, any> = {};
const lines = tomlString.split(/\r?\n/);
Expand Down

0 comments on commit 1879c4c

Please sign in to comment.