Support single quotes in conditions #20
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: Build | |
on: | |
push: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
- uses: Swatinem/rust-cache@v2 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Cargo | |
run: | | |
cargo install wasm-pack | |
- name: Increment version | |
run: | | |
git config --local user.name actions-user | |
git config --local user.email "actions@github.com" | |
npm version patch -m "Update patch version" | |
- name: Build | |
run: | | |
npm run build | |
- name: Test | |
run: | | |
npm run test | |
- name: Upload module | |
uses: actions/upload-artifact@v3 | |
with: | |
name: conditions | |
path: | | |
pkg/* | |
if-no-files-found: error | |
- name: Commit new version | |
run: | | |
git push -f origin main | |
- name: Publish | |
run: | | |
cd pkg | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |