chore(deps): update dependency rollup to v3.28.0 #909
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automated tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.5.3 | |
- uses: actions/setup-node@v3.7.0 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org | |
- name: yarn install, test | |
run: | | |
yarn install | |
yarn build | |
yarn test | |
env: | |
CI: true | |
- name: publish | |
if: startsWith(github.ref, 'refs/tags/v') | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |