diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..44cc8e1 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +--- +name: ci +on: + workflow_dispatch: + pull_request: + branches: + - main + +jobs: + nextjs-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '21.7' + - name: Install dependencies + run: npm install + - name: Lint + run: npm run lint \ No newline at end of file diff --git a/package.json b/package.json index ebed31b..6fc300f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "csp-scout-ui", - "version": "0.1.0", + "version": "0.0.1", "private": true, "scripts": { "dev": "next dev --turbo",