Skip to content

Commit

Permalink
Update release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
w1kman committed Oct 6, 2023
1 parent 41efab4 commit 96b3342
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js 12.xs
uses: actions/setup-node@v1
- name: Use Node.js 16.xs
uses: actions/setup-node@v3
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
node-version: '16'
cache: 'npm'

- name: Install dependencies
run: yarn install
run: npm ci

- name: Lint
run: yarn lint
- name: Lint files
run: npm run lint

- name: Test
run: yarn test
run: npm test

- name: Bundle
run: yarn bundle
run: npm run bundle

- name: Publish to NPM
env:
Expand Down

0 comments on commit 96b3342

Please sign in to comment.