Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosala committed Aug 17, 2022
1 parent 238524e commit 08e2578
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Main"
name: 'Main'
on:
- push

Expand All @@ -15,9 +15,7 @@ jobs:
run: echo "::set-output name=datetime::$(date +'%Y%m%d%H%M%S')"

build:
needs: [ configure ]
container:
image: zondax/rust-ci:latest
needs: [configure]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -26,11 +24,13 @@ jobs:
submodules: true
- name: Install node
uses: actions/setup-node@v2
with:
node-version: "14.17.0"
- name: Install dependencies
run: yarn install
- name: Run linter
run: yarn linter
- name: Run formatter
run: yarn format
- name: Build
run: yarn build
- name: Key derivation tests
run: yarn test:key-derivation
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Publish packages"
name: 'Publish packages'

on:
release:
Expand Down Expand Up @@ -28,8 +28,8 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: '14.17.0'
registry-url: "https://registry.npmjs.org"
scope: "@zondax"
registry-url: 'https://registry.npmjs.org'
scope: '@zondax'
- name: Install yarn
run: npm install -g yarn
- run: yarn install
Expand Down

0 comments on commit 08e2578

Please sign in to comment.