Skip to content

Commit

Permalink
Merge pull request #5 from suyeon1218/Suyeon
Browse files Browse the repository at this point in the history
[조수연] 자동차 경주 미션 Step1
  • Loading branch information
JunilHwang authored Jun 26, 2024
2 parents abc27cb + 7ae8116 commit 2405a0d
Show file tree
Hide file tree
Showing 16 changed files with 3,052 additions and 6 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
pull_request:
types:
- synchronize
- opened
- reopened

workflow_dispatch:

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 18
- name: test
run: |
npm install
npm run test
8 changes: 8 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import globals from "globals";
import pluginJs from "@eslint/js";


export default [
{languageOptions: { globals: {...globals.browser, ...globals.node} }},
pluginJs.configs.recommended,
];
Loading

0 comments on commit 2405a0d

Please sign in to comment.