Skip to content

fix: performance now #19

fix: performance now

fix: performance now #19

Workflow file for this run

name: build
on: [push, pull_request]
concurrency:
group: ${{github.workflow}}-${{github.event_name}}-${{github.ref}}
cancel-in-progress: true
jobs:
test-and-build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version:
- 12

Check failure on line 20 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 20, Col: 13): A sequence was not expected
- 13
- 14
- 15
- 16
- 17
- 18
- name: Install Dependencies
run: npm install
- name: Run build & test
run: |
npm run build
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}