Skip to content

Update actions/checkout action to v4 #70

Update actions/checkout action to v4

Update actions/checkout action to v4 #70

Workflow file for this run

name: Publish Coveralls
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 10.x
uses: actions/setup-node@v2
with:
node-version: 10.x
- name: Check and create coverage file
run: |
npm install
npm run test:coverage
- name: Coveralls
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}