Skip to content

Commit

Permalink
chore(ci): Update action versions and scripts to run (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Apr 18, 2024
1 parent 4572fe7 commit 34a3deb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@ name: Test and Build Plugin

on:
push:
branches: [main, develop]
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
runs-on: macos-14

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '18'
- run: npm install
- run: npm run test
- run: npm run build
- run: npm run lint
- run: npm run build
- run: npm run verify
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.js",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "echo none yet!"
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@capacitor/android": "^6.0.0",
Expand Down

0 comments on commit 34a3deb

Please sign in to comment.