Skip to content

fix: change GO ie to works with new format (#38) #89

fix: change GO ie to works with new format (#38)

fix: change GO ie to works with new format (#38) #89

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: yarn
- name: Check tests
run: yarn test --coverage
- name: Check linting
run: yarn lint
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}