rs-cargo/.github/workflows/ci.yml

24 lines
454 B
YAML
Raw Normal View History

2019-09-19 13:16:30 +03:00
name: Continuous integration
on: [pull_request, push]
jobs:
check_pr:
runs-on: ubuntu-latest
steps:
- name: Create npm configuration
run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc
env:
token: ${{ secrets.GITHUB_TOKEN }}
2019-09-19 13:16:30 +03:00
- 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