Skip to content

Inspect directory

Inspect directory #5

Workflow file for this run

name: CI
on:
push:
branches:
- github-actions
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Set up Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test; ls -latr
- name: Upload coverage to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
ls -latr; cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js