Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Bump get-func-name from 2.0.0 to 2.0.2 #15

Bump get-func-name from 2.0.0 to 2.0.2

Bump get-func-name from 2.0.0 to 2.0.2 #15

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
lint:
runs-on: ubuntu-22.04
name: Lint
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '18'
- run: yarn
- run: yarn lint
build:
runs-on: ubuntu-22.04
needs: lint
name: Build
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '18'
- run: yarn
- run: yarn build
test:
runs-on: ubuntu-22.04
needs: build
name: Test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '18'
- run: yarn
- run: yarn test