Files
actions-setup-docker-compose/.github/workflows/test.yml
Kengo TODA 583b9ac80c build with the latest dependencies (#84)
* build with the latest dependencies

close #69

* chore: update the dist files

* ci: use `npm ci` instead of `npm i`

* chore: update the dist files
2020-12-06 17:56:38 +08:00

24 lines
518 B
YAML

name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
npm ci
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./
with:
version: '1.26.2'