Skip to content

Commit

Permalink
Update version add ci workflow (#3)
Browse files Browse the repository at this point in the history
* Update version
add ci workflow

* rename to .yml
  • Loading branch information
AchimGrolimund authored Apr 10, 2024
1 parent 940496d commit 8646b20
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csp-scout-ui",
"version": "0.1.0",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbo",
Expand Down

0 comments on commit 8646b20

Please sign in to comment.