mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-05-10 10:44:19 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
No EOL
781 B
YAML
26 lines
No EOL
781 B
YAML
name: Main
|
|
|
|
on: [pull_request, push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# https://github.com/actions/checkout
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Install
|
|
run: npm ci
|
|
- name: Build
|
|
run: npm run build
|
|
- name: Test
|
|
run: npm run test
|
|
- name: Format
|
|
run: npm run fmtcheck
|
|
# - name: "check for uncommitted changes"
|
|
# # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed.
|
|
# run: |
|
|
# git diff --exit-code --stat -- . ':!node_modules' \
|
|
# || (echo "##[error] found changed files after build. please 'npm run build && npm run fmt'" \
|
|
# "and check in all changes" \
|
|
# && exit 1) |