This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
build(deps): bump get-func-name from 2.0.0 to 2.0.2 #894
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
check-latest: true | |
- name: Dependency check | |
run: yarn --immutable --immutable-cache --check-cache | |
- name: Dependency cruiser check | |
run: yarn test:deps | |
- name: Prettier check | |
run: yarn test:prettier | |
- name: ESLint check | |
run: yarn test:eslint | |
- name: Skypack check | |
run: yarn test:skypack | |
test: | |
needs: check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18, 20, 21] | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Node.js ${{matrix.node}} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{matrix.node}} | |
- name: Unit tests | |
run: yarn test |