Skip to content

Commit

Permalink
fix: alexa ip address is not found (#120)
Browse files Browse the repository at this point in the history
* fix: cd  alexa ip address is not found

* fix: github actions update

* fix: enable tests again on ci
  • Loading branch information
mabunixda authored Sep 30, 2022
1 parent b4c8d8a commit 3c1c8e8
Show file tree
Hide file tree
Showing 10 changed files with 736 additions and 556 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
name: CI
on:
push:
branches:
- '**'
branches: ['main']
pull_request:
branches:
- 'main'
branches: ['main']

jobs:

build:

runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node: [14,16]

steps:

- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

- name: Cache node modules
- name: Cache node modules
id: cache
uses: actions/cache@v1
with:
Expand All @@ -44,14 +46,17 @@ jobs:

- name: Shell Linter
uses: azohra/[email protected]
with:
path: "scripts"

- run: npm run test

# - run: npm test
release:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
Expand Down
Loading

0 comments on commit 3c1c8e8

Please sign in to comment.