build(deps): bump serde from 1.0.210 to 1.0.214 #1443
Workflow file for this run
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: 'CI-CD sails-js' | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled] | |
branches: [master] | |
paths-ignore: | |
- 'net/**' | |
- 'Sails.Net.sln' | |
push: | |
branches: [master] | |
paths: | |
- js/** | |
workflow_dispatch: | |
env: | |
BINARYEN_VERSION: version_111 | |
jobs: | |
test: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-22.04 | |
env: | |
RUSTUP_HOME: /tmp/rustup_home | |
steps: | |
- name: Cancel previous workflow runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: 'Install: NodeJS 20.x' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: 'Install: dependencies' | |
run: yarn install | |
- name: 'Install: binaryen' | |
working-directory: /usr | |
run: | | |
sudo wget -c https://github.com/WebAssembly/binaryen/releases/download/$BINARYEN_VERSION/binaryen-$BINARYEN_VERSION-x86_64-linux.tar.gz -O - | sudo tar -xz -C . | |
sudo cp binaryen-$BINARYEN_VERSION/bin/wasm-opt /usr/bin/ | |
- name: 'Prepare: build all' | |
run: yarn build | |
- name: 'Prepare: fmt' | |
run: yarn lint | |
- name: 'Prepare: download Gear node' | |
run: | | |
wget -O ./gear https://github.com/gear-tech/gear/releases/download/v1.5.0-1/gear | |
chmod +x gear | |
- name: 'Prepare: run Gear node' | |
run: nohup ./gear --dev --execution=wasm --tmp --unsafe-rpc-external --rpc-methods Unsafe --rpc-cors all & | |
- name: 'Prepare: sleep 3 min' | |
run: sleep 180 | |
- name: 'Test: run' | |
run: yarn test | |
publish-to-npm: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use node 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: 'Prepare: install dependencies' | |
run: yarn install | |
- name: 'Install: binaryen' | |
working-directory: /usr | |
run: | | |
sudo wget -c https://github.com/WebAssembly/binaryen/releases/download/$BINARYEN_VERSION/binaryen-$BINARYEN_VERSION-x86_64-linux.tar.gz -O - | sudo tar -xz -C . | |
sudo cp binaryen-$BINARYEN_VERSION/bin/wasm-opt /usr/bin/ | |
- name: 'Prepare: build all' | |
run: yarn build | |
- name: Publish | |
run: | | |
export token=$(printenv npm_token) | |
echo "//registry.npmjs.org/:_authToken=$token" > .npmrc | |
npx lerna publish from-package --yes --no-private | |
env: | |
npm_token: ${{ secrets.NPM_TOKEN }} |