Skip to content

Merge pull request #62 from cybozu/update-go-dep #156

Merge pull request #62 from cybozu/update-go-dep

Merge pull request #62 from cybozu/update-go-dep #156

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- uses: actions/setup-node@v4
with:
node-version-file: ./es/package.json
cache: 'npm'
cache-dependency-path: './es/package-lock.json'
- run: make lint
- run: make check-generate
- run: make test
- run: make es-test