IT4C.dev/.github/workflows/test-build.yml
dependabot[bot] b5bba763e6
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [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/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-05 10:56:09 +00:00

22 lines
389 B
YAML

name: build test CI
on: push
jobs:
build-test:
name: Build Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node 19
uses: actions/setup-node@v3
with:
node-version: '19'
- name: npm-install
run: npm install
- name: npm-build
run: npm run build