Skip to content

Refactor action.yml description #11

Refactor action.yml description

Refactor action.yml description #11

Workflow file for this run

name: Build and test
on:
workflow_dispatch:
push:
paths:
- "**.js"
- "package.json"
pull_request:
paths:
- "**.js"
- "package.json"
jobs:
test:
if: |
!contains(toJSON(github.event.commits.*.message), '[skip-ci]') &&
!startsWith(github.ref, 'refs/tags')
name: Generate build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn build && yarn run test-dist