Skip to content

chore(deps): update actions/checkout digest to a5ac7e5 #2236

chore(deps): update actions/checkout digest to a5ac7e5

chore(deps): update actions/checkout digest to a5ac7e5 #2236

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Lint and test
runs-on: ubuntu-latest
env:
CI: true
strategy:
fail-fast: false
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: yarn install
run: yarn
- name: Unittesting
run: yarn test
- name: Linting
if: ${{ matrix.node-version == '18.x' }}
run: yarn lint
- name: Coverage
run: yarn coverage