git commit --allow-empty -m "trigger build" # Commit no new changes to trigger buildYou should never amend public commits (i.e. already pushed to a public reop).
| { | |
| "env": { | |
| "browser": true, | |
| "node": true, | |
| "es6": true | |
| }, | |
| "plugins": ["react"], | |
| "ecmaFeatures": { |
| # ***** FILE SYSTEM ***** | |
| # Find paths of all files beginning with a regex in the current directory | |
| find . -regex '.*/learn.*' -maxdepth 1 | |
| # Move all files matching the regex to a folder ./learn | |
| # Warning: An error will appear but it's ok, all files except for ./learn itself are moved | |
| # mv: rename ./learn to learn/learn: Invalid argument | |
| mv $(find . -regex '.*/learn.*' -maxdepth 1) learn |
| const { expect } = require("chai"); | |
| const { ethers } = require("hardhat"); | |
| describe.skip("Greeter", function () { | |
| it("Should return the new greeting once it's changed", async function () { | |
| const Greeter = await ethers.getContractFactory("Greeter"); | |
| const greeter = await Greeter.deploy("Hello, world!"); | |
| await greeter.deployed(); | |
| console.log("greeter deployed to:", greeter.address); |
| print("hello gist! This is my first time using this :)") |