Skip to content

chore(deps): update actions/checkout digest to 8ade135 - autoclosed #650

chore(deps): update actions/checkout digest to 8ade135 - autoclosed

chore(deps): update actions/checkout digest to 8ade135 - autoclosed #650

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@97a652b80035363df47baee5031ec8670b8878ac
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8
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