Add nodejs to workflow

pull/84/head
Andre Richter 4 years ago
parent 1d46dd40b6
commit 2270b386de
No known key found for this signature in database
GPG Key ID: 2116C1AB102F615E

@ -15,21 +15,28 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: "12"
- name: Set up Ruby 2.x - name: Set up Ruby 2.x
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
with: with:
ruby-version: 2.x ruby-version: 2.x
- name: Set up Bundler
run: |
gem install bundler
bundle config set without 'uart'
bundle install --retry 3
- name: Set up Prettier
run: |
npm install prettier
- name: Set up Rust nightly - name: Set up Rust nightly
run: | run: |
rustup self update rustup self update
rustup toolchain install nightly --component rustfmt clippy rustup toolchain install nightly --component rustfmt clippy
rustup default nightly rustup default nightly
rustup target add aarch64-unknown-none-softfloat rustup target add aarch64-unknown-none-softfloat
- name: Set up Ruby
run: |
gem install bundler
bundle config set without 'uart'
bundle install --retry 3
- name: Setup misspell - name: Setup misspell
run: | run: |
curl -L -o ./install-misspell.sh https://git.io/misspell curl -L -o ./install-misspell.sh https://git.io/misspell

Loading…
Cancel
Save