mirror of
https://github.com/actions-rs/cargo.git
synced 2024-11-13 04:56:32 +02:00
CI build
This commit is contained in:
parent
23f951744d
commit
f1454eebbc
1 changed files with 18 additions and 0 deletions
18
workflows/ci.yml
Normal file
18
workflows/ci.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Continuous integration
|
||||
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
check_pr:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: "npm ci"
|
||||
run: npm ci
|
||||
|
||||
- name: "npm run build"
|
||||
run: npm run build
|
||||
|
||||
- name: "npm run test"
|
||||
run: npm run test
|
Loading…
Reference in a new issue