Skip to content

Commit

Permalink
chore: setup ci
Browse files Browse the repository at this point in the history
  • Loading branch information
shuta13 committed Apr 17, 2024
1 parent 0cdca94 commit 527bd6a
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI

on:
push:

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.21.1"
- run: go version
- name: Git Identity
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY
- name: Install
run: |
npm ci .
npm run install:go
- name: Build
run: npm run build
- name: Lint
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
npm run lint
- name: Format
run: npm run format
- name: Test
run: npm run test

0 comments on commit 527bd6a

Please sign in to comment.