Update package dependencies #19
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: Node CI | |
on: [push] | |
jobs: | |
test: | |
name: Test and | |
runs-on: ubuntu-latest | |
steps: | |
- name: Preserve line endings | |
run: git config --global core.autocrlf false | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- uses: actions/cache@v2 | |
with: | |
path: '**/node_modules' | |
key: node-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ | |
- name: Install | |
run: yarn | |
- name: Test | |
run: yarn run test | |
release: | |
name: npm publish / GitHub release | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- uses: actions/cache@v2 | |
with: | |
path: '**/node_modules' | |
key: node-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ | |
- name: Install | |
run: yarn | |
- name: Build | |
if: success() | |
run: | | |
yarn run compile | |
yarn run compile:datasource | |
cp README.md dist/akita-filters-plugin/README.md | |
cp LICENSE.md dist/akita-filters-plugin/LICENSE.md | |
- name: Semantic Release | |
if: success() | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release |