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 2678523
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import("eslint").Linter.Config} */
module.exports = {
ignorePatterns: ["node_modules/*", "dist/*", "*.config.js", "__mocks__/src/*"],
ignorePatterns: ["node_modules/*", "dist/*", "*.config.js", "__mocks__/src/*", ".eslintrc.js"],
env: {
browser: true,
es6: true,
Expand Down
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 2678523

Please sign in to comment.