Skip to content

chore(deps): update actions/setup-node digest to 2a017f3 - autoclosed #651

chore(deps): update actions/setup-node digest to 2a017f3 - autoclosed

chore(deps): update actions/setup-node digest to 2a017f3 - autoclosed #651

Workflow file for this run

---
name: Unit tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Unit Tests - Node.js
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x, 18.x ]
steps:
- uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
with:
node-version: ${{ matrix.node-version }}
cache: yarn
cache-dependency-path: yarn.lock
- name: Install
run: yarn install
- name: Compile
run: yarn build
- name: Package
run: yarn run package
- name: Test
run: yarn test
- name: Codecov
if: ${{ matrix.node-version == '18.x' }}
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d