2019-09-19 13:17:53 +03:00
|
|
|
name: Continuous integration
|
|
|
|
|
2020-01-13 15:31:26 +02:00
|
|
|
on: [push, pull_request]
|
2019-09-19 13:17:53 +03:00
|
|
|
|
|
|
|
jobs:
|
2020-01-13 15:31:26 +02:00
|
|
|
test:
|
2019-09-19 13:17:53 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2019-10-16 15:12:53 +03:00
|
|
|
- name: Create npm configuration
|
|
|
|
run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc
|
|
|
|
env:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2019-09-19 13:17:53 +03:00
|
|
|
|
2019-10-16 15:12:53 +03:00
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build
|
|
|
|
- run: npm run test
|
2019-09-19 13:17:53 +03:00
|
|
|
|
2019-10-16 15:12:53 +03:00
|
|
|
install_stable:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: ./
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
2019-09-19 13:17:53 +03:00
|
|
|
|
2019-10-16 15:12:53 +03:00
|
|
|
install_nightly:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: ./
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: nightly
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
|
|
|
install_stable_in_docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: ubuntu:latest # Docker image, not the GitHub Actions VM
|
|
|
|
steps:
|
|
|
|
# `rustup` will need `curl` or `wget` later
|
|
|
|
- run: apt-get update && apt-get install -y curl
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: ./
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
2020-01-13 15:31:26 +02:00
|
|
|
|
|
|
|
install_stable_through_rust_toolchain_file:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: echo "stable" > ./rust-toolchain
|
|
|
|
- uses: ./
|