Skip to content

Fix string interpolated value extraction in val pattern #151

Fix string interpolated value extraction in val pattern

Fix string interpolated value extraction in val pattern #151

name: continuous-integration
# Only run for pushes to a branch, not to a tag
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn
- run: yarn build
- run: yarn test