Skip to content

Merge pull request #2 from senecajs/lc-update-gh-actions-env-var #13

Merge pull request #2 from senecajs/lc-update-gh-actions-env-var

Merge pull request #2 from senecajs/lc-update-gh-actions-env-var #13

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
environment: test
env:
TILLO_API_KEY: ${{secrets.TILLO_API_KEY}}}
TILLO_SECRET: ${{secrets.TILLO_SECRET}

Check failure on line 17 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: 17, Col: 21): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
timeout-minutes: 6
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [lts/*, 17.x, 16.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
# manually install peerdeps for node 12,14
- run: npm i seneca seneca-entity seneca-promisify @seneca/provider @seneca/env
- run: npm run build --if-present
- run: npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info