Skip to content

ci: add Golang and Cypress linter #5

ci: add Golang and Cypress linter

ci: add Golang and Cypress linter #5

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
tags:
- 'v*'
jobs:
golang-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version-file: tests/go.mod
- name: Analysis
uses: golangci/golangci-lint-action@v3
with:
args: -v
working-directory: tests
cypress-lint:
runs-on: ubuntu-latest
env:
NODE_VERSION: current
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- name: Install npm
run: |
npm ci
npm ls --depth=0
- name: Analysis
uses: sibiraj-s/action-eslint@v3
with:
working-dir: tests/cypress/latest
#extensions: 'js,ts'